From 01b84bb5d8231eb38bdbecd11a0aec4bc3690c2c Mon Sep 17 00:00:00 2001 From: william051200 Date: Mon, 15 Dec 2025 13:13:55 +0800 Subject: [PATCH 01/32] [refractor] - Migrated 'az vm identity show' command --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 28ed17b1169..a5f516a2131 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -826,8 +826,12 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size # region VirtualMachines Identity def show_vm_identity(cmd, resource_group_name, vm_name): - client = _compute_client_factory(cmd.cli_ctx) - return client.virtual_machines.get(resource_group_name, vm_name).identity + from .aaz.latest.vm._show import Show + vm = Show(cli_ctx=cmd.cli_ctx)(command_args={ + 'resource_group': resource_group_name, + 'vm_name': vm_name + }) + return vm.get("identity") if vm else None def show_vmss_identity(cmd, resource_group_name, vm_name): From 12eb476bff78a031ba4e05643ce3ea6f1d354914 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 16 Dec 2025 15:31:08 +0800 Subject: [PATCH 02/32] [Refractor] - Refractored show_vm_dentity function and migrated get_vm function --- .../azure/cli/command_modules/vm/custom.py | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index a5f516a2131..f30b8ec369a 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -826,12 +826,8 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size # region VirtualMachines Identity def show_vm_identity(cmd, resource_group_name, vm_name): - from .aaz.latest.vm._show import Show - vm = Show(cli_ctx=cmd.cli_ctx)(command_args={ - 'resource_group': resource_group_name, - 'vm_name': vm_name - }) - return vm.get("identity") if vm else None + vm = get_vm(cmd, resource_group_name, vm_name) + return vm.get("identity", {}) if vm else {} def show_vmss_identity(cmd, resource_group_name, vm_name): @@ -1372,8 +1368,16 @@ def get_instance_view(cmd, resource_group_name, vm_name, include_user_data=False def get_vm(cmd, resource_group_name, vm_name, expand=None): - client = _compute_client_factory(cmd.cli_ctx) - return client.virtual_machines.get(resource_group_name, vm_name, expand=expand) + from .aaz.latest.vm._show import Show + command_args = { + 'resource_group': resource_group_name, + 'vm_name': vm_name, + } + + if expand: + command_args['expand'] = expand + + return Show(cli_ctx=cmd.cli_ctx)(command_args=command_args) def get_vm_to_update(cmd, resource_group_name, vm_name): From cdc1fedde6a15a23b966804613c36490f9536cfd Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 16 Dec 2025 15:36:25 +0800 Subject: [PATCH 03/32] [Refractor] - Migrated assign_vm_identity function --- .../azure/cli/command_modules/vm/custom.py | 72 ++++++++++--------- 1 file changed, 40 insertions(+), 32 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index f30b8ec369a..780eacae3f1 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -837,49 +837,57 @@ def show_vmss_identity(cmd, resource_group_name, vm_name): def assign_vm_identity(cmd, resource_group_name, vm_name, assign_identity=None, identity_role=None, identity_role_id=None, identity_scope=None): - VirtualMachineIdentity, ResourceIdentityType, VirtualMachineUpdate = cmd.get_models('VirtualMachineIdentity', - 'ResourceIdentityType', - 'VirtualMachineUpdate') - UserAssignedIdentitiesValue = cmd.get_models('UserAssignedIdentitiesValue') - from azure.cli.core.commands.arm import assign_identity as assign_identity_helper - client = _compute_client_factory(cmd.cli_ctx) - _, _, external_identities, enable_local_identity = _build_identities_info(assign_identity) + identity, _, external_identities, enable_local_identity = _build_identities_info(assign_identity) + + system_assigned = "SystemAssigned" + user_assigned = "UserAssigned" + system_assigned_user_assigned = "SystemAssigned, UserAssigned" + command_args = {'resource_group': resource_group_name, 'vm_name': vm_name} def getter(): - return client.virtual_machines.get(resource_group_name, vm_name) + return get_vm(cmd, resource_group_name, vm_name) def setter(vm, external_identities=external_identities): - if vm.identity and vm.identity.type == ResourceIdentityType.system_assigned_user_assigned: - identity_types = ResourceIdentityType.system_assigned_user_assigned - elif vm.identity and vm.identity.type == ResourceIdentityType.system_assigned and external_identities: - identity_types = ResourceIdentityType.system_assigned_user_assigned - elif vm.identity and vm.identity.type == ResourceIdentityType.user_assigned and enable_local_identity: - identity_types = ResourceIdentityType.system_assigned_user_assigned + if vm.get('identity') and vm.get('identity').get('type') == system_assigned_user_assigned: + identity_types = system_assigned_user_assigned + elif vm.get('identity') and vm.get('identity').get('type') == system_assigned and external_identities: + identity_types = system_assigned_user_assigned + elif vm.get('identity') and vm.get('identity').get('type') == user_assigned and enable_local_identity: + identity_types = system_assigned_user_assigned elif external_identities and enable_local_identity: - identity_types = ResourceIdentityType.system_assigned_user_assigned + identity_types = system_assigned_user_assigned elif external_identities: - identity_types = ResourceIdentityType.user_assigned + identity_types = user_assigned else: - identity_types = ResourceIdentityType.system_assigned + identity_types = system_assigned - vm.identity = VirtualMachineIdentity(type=identity_types) - if external_identities: - vm.identity.user_assigned_identities = {} - if not cmd.supported_api_version(min_api='2018-06-01', resource_type=ResourceType.MGMT_COMPUTE): - raise CLIInternalError("Usage error: user assigned identity is not available under current profile.", - "You can set the cloud's profile to latest with 'az cloud set --profile latest" - " --name '") - for identity in external_identities: - vm.identity.user_assigned_identities[identity] = UserAssignedIdentitiesValue() + if identity_types == system_assigned_user_assigned: + command_args['mi_system_assigned'] = "True" + command_args['mi_user_assigned'] = [] + elif identity_types == user_assigned: + command_args['mi_user_assigned'] = [] + else: + command_args['mi_system_assigned'] = "True" - vm_patch = VirtualMachineUpdate() - vm_patch.identity = vm.identity - return patch_vm(cmd, resource_group_name, vm_name, vm_patch) + if vm.get('identity') and vm.get('identity').get('userAssignedIdentities'): + [command_args['mi_user_assigned'].append(key) for key in list(vm.get('identity').get('userAssignedIdentities').keys())] + if identity.get('userAssignedIdentities'): + [command_args['mi_user_assigned'].append(key) for key in list(identity.get('userAssignedIdentities').keys()) if key not in command_args['mi_user_assigned']] + + from .aaz.latest.vm._patch import Patch + updateVmIdentity = Patch(cli_ctx=cmd.cli_ctx)(command_args=command_args) + LongRunningOperation(cmd.cli_ctx)(updateVmIdentity) + result = updateVmIdentity.result() + return result + + from azure.cli.core.commands.arm import assign_identity as assign_identity_helper assign_identity_helper(cmd.cli_ctx, getter, setter, identity_role=identity_role_id, identity_scope=identity_scope) - vm = client.virtual_machines.get(resource_group_name, vm_name) - return _construct_identity_info(identity_scope, identity_role, vm.identity.principal_id, - vm.identity.user_assigned_identities) + + vm = getter() + return _construct_identity_info(identity_scope, identity_role, + vm.get('identity').get('principalId') or None, + vm.get('identity').get('userAssignedIdentities') or None) # endregion From 839e2e46f864783c392b1b12b63a0d1c44f7cfa4 Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 17 Dec 2025 07:00:37 +0800 Subject: [PATCH 04/32] [Refractor] - Preserve old function to avoid breaking change, updated show_vm_identity function --- .../azure/cli/command_modules/vm/custom.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 780eacae3f1..250c4158c1d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -826,8 +826,14 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size # region VirtualMachines Identity def show_vm_identity(cmd, resource_group_name, vm_name): - vm = get_vm(cmd, resource_group_name, vm_name) - return vm.get("identity", {}) if vm else {} + vm = get_vm_migrated(cmd, resource_group_name, vm_name) + + identity = vm.get("identity", {}) if vm else None + + if identity and not identity.get('userAssignedIdentities'): + identity['userAssignedIdentities'] = None + + return identity or {} def show_vmss_identity(cmd, resource_group_name, vm_name): @@ -845,7 +851,7 @@ def assign_vm_identity(cmd, resource_group_name, vm_name, assign_identity=None, command_args = {'resource_group': resource_group_name, 'vm_name': vm_name} def getter(): - return get_vm(cmd, resource_group_name, vm_name) + return get_vm_migrated(cmd, resource_group_name, vm_name) def setter(vm, external_identities=external_identities): if vm.get('identity') and vm.get('identity').get('type') == system_assigned_user_assigned: @@ -1375,7 +1381,7 @@ def get_instance_view(cmd, resource_group_name, vm_name, include_user_data=False return result -def get_vm(cmd, resource_group_name, vm_name, expand=None): +def get_vm_migrated(cmd, resource_group_name, vm_name, expand=None): from .aaz.latest.vm._show import Show command_args = { 'resource_group': resource_group_name, @@ -1387,6 +1393,9 @@ def get_vm(cmd, resource_group_name, vm_name, expand=None): return Show(cli_ctx=cmd.cli_ctx)(command_args=command_args) +def get_vm(cmd, resource_group_name, vm_name, expand=None): + client = _compute_client_factory(cmd.cli_ctx) + return client.virtual_machines.get(resource_group_name, vm_name, expand=expand) def get_vm_to_update(cmd, resource_group_name, vm_name): client = _compute_client_factory(cmd.cli_ctx) From 0185937dab571f4b3db9f175c54bee4e668c07da Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 17 Dec 2025 07:18:32 +0800 Subject: [PATCH 05/32] [Refractor] - Refractored assign_identity_helper function --- .../azure/cli/command_modules/vm/_vm_utils.py | 75 +++++++++++++++++++ .../azure/cli/command_modules/vm/custom.py | 2 +- 2 files changed, 76 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py index 45eaa73f3be..7e188596e7a 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py @@ -11,6 +11,8 @@ from urllib.parse import urlparse from azure.cli.core.commands.arm import ArmTemplateBuilder +from azure.cli.core.commands.client_factory import get_mgmt_service_client +from azure.cli.core.profiles import ResourceType, get_sdk from knack.log import get_logger from knack.util import CLIError @@ -757,3 +759,76 @@ def _open(filename, mode): f.write(public_bytes) return public_bytes.decode() + + +def _gen_guid(): + import uuid + return uuid.uuid4() + + +def assign_identity(cli_ctx, getter, setter, identity_role=None, identity_scope=None): + import time + from azure.core.exceptions import HttpResponseError + + # get + resource = getter() + resource = setter(resource) + + # create role assignment: + if identity_scope: + principal_id = resource.get('identity').get('principal_id') + + identity_role_id = resolve_role_id(cli_ctx, identity_role, identity_scope) + assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments + RoleAssignmentCreateParameters = get_sdk(cli_ctx, ResourceType.MGMT_AUTHORIZATION, + 'RoleAssignmentCreateParameters', mod='models', + operation_group='role_assignments') + parameters = RoleAssignmentCreateParameters(role_definition_id=identity_role_id, principal_id=principal_id, + principal_type=None) + + logger.info("Creating an assignment with a role '%s' on the scope of '%s'", identity_role_id, identity_scope) + retry_times = 36 + assignment_name = _gen_guid() + for retry_time in range(0, retry_times): + try: + assignments_client.create(scope=identity_scope, role_assignment_name=assignment_name, + parameters=parameters) + break + except HttpResponseError as ex: + if ex.error.code == 'RoleAssignmentExists': + logger.info('Role assignment already exists') + break + if retry_time < retry_times and ' does not exist in the directory ' in ex.message: + time.sleep(5) + logger.warning('Retrying role assignment creation: %s/%s', retry_time + 1, + retry_times) + continue + raise + return resource + + +def resolve_role_id(cli_ctx, role, scope): + import uuid + client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_definitions + + role_id = None + if re.match(r'/subscriptions/[^/]+/providers/Microsoft.Authorization/roleDefinitions/', + role, re.I): + role_id = role + else: + try: + uuid.UUID(role) + role_id = '/subscriptions/{}/providers/Microsoft.Authorization/roleDefinitions/{}'.format( + client.config.subscription_id, role) + except ValueError: + pass + if not role_id: # retrieve role id + role_defs = list(client.list(scope, "roleName eq '{}'".format(role))) + if not role_defs: + raise CLIError("Role '{}' doesn't exist.".format(role)) + if len(role_defs) > 1: + ids = [r.id for r in role_defs] + err = "More than one role matches the given name '{}'. Please pick an id from '{}'" + raise CLIError(err.format(role, ids)) + role_id = role_defs[0].id + return role_id \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 250c4158c1d..15a911ee5a2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -887,7 +887,7 @@ def setter(vm, external_identities=external_identities): result = updateVmIdentity.result() return result - from azure.cli.core.commands.arm import assign_identity as assign_identity_helper + from ._vm_utils import assign_identity as assign_identity_helper assign_identity_helper(cmd.cli_ctx, getter, setter, identity_role=identity_role_id, identity_scope=identity_scope) vm = getter() From 117ca05e9e97409599abe8d4a2a5d28c1d2fa241 Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 17 Dec 2025 07:19:39 +0800 Subject: [PATCH 06/32] [Refractor] - Edit so the response is same as original when identity is empty --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 15a911ee5a2..4789c32dc69 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -833,7 +833,7 @@ def show_vm_identity(cmd, resource_group_name, vm_name): if identity and not identity.get('userAssignedIdentities'): identity['userAssignedIdentities'] = None - return identity or {} + return identity or None def show_vmss_identity(cmd, resource_group_name, vm_name): From 854212c631402b20edd103c504a5c3725737fc5d Mon Sep 17 00:00:00 2001 From: william051200 Date: Thu, 18 Dec 2025 08:12:03 +0800 Subject: [PATCH 07/32] [refractor] - Added handling to assign_vm_identity function --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 4789c32dc69..f19f1236fcb 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -892,8 +892,8 @@ def setter(vm, external_identities=external_identities): vm = getter() return _construct_identity_info(identity_scope, identity_role, - vm.get('identity').get('principalId') or None, - vm.get('identity').get('userAssignedIdentities') or None) + vm.get('identity').get('principalId') or None if vm.get('identity') else None, + vm.get('identity').get('userAssignedIdentities') or None if vm.get('identity') else None) # endregion From d787b70bf9507ea474fa816e1dc1a0456501e270 Mon Sep 17 00:00:00 2001 From: william051200 Date: Fri, 19 Dec 2025 14:41:45 +0800 Subject: [PATCH 08/32] [Refractor] - Migrated remove_vm_identity function --- .../azure/cli/command_modules/vm/_vm_utils.py | 10 ++- .../azure/cli/command_modules/vm/custom.py | 73 ++++++++++++++++-- .../cli/command_modules/vm/operations/vm.py | 76 ++++++++++++++++++- 3 files changed, 152 insertions(+), 7 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py index 7e188596e7a..a9ea972a019 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py @@ -7,6 +7,7 @@ import os import re import importlib +from enum import Enum from urllib.parse import urlparse @@ -831,4 +832,11 @@ def resolve_role_id(cli_ctx, role, scope): err = "More than one role matches the given name '{}'. Please pick an id from '{}'" raise CLIError(err.format(role, ids)) role_id = role_defs[0].id - return role_id \ No newline at end of file + return role_id + + +class IdentityType(Enum): + SYSTEM_ASSIGNED = 'SystemAssigned' + USER_ASSIGNED = "UserAssigned" + SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned" + NONE = 'None' \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index f19f1236fcb..d5c14ee0c30 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2545,18 +2545,81 @@ def _remove_identities(cmd, resource_group_name, name, identities, getter, sette return result.identity +def _remove_identities_by_aaz(cmd, resource_group_name, name, identities, getter, setter): + from ._vm_utils import MSI_LOCAL_ID, IdentityType + + remove_system_assigned_identity = False + + if MSI_LOCAL_ID in identities: + remove_system_assigned_identity = True + identities.remove(MSI_LOCAL_ID) + + resource = getter(cmd, resource_group_name, name) + existing_identity = resource.get('identity') + + if existing_identity is None: + return None + + existing_emsis = [x.lower() for x in list((existing_identity.get('userAssignedIdentities') or {}).keys())] + + if identities: + emsis_to_remove = [x.lower() for x in identities] + + non_existing = [emsis for emsis in emsis_to_remove if not emsis in existing_emsis] + if non_existing: + raise CLIError("'{}' are not associated with '{}'".format(','.join(non_existing), name)) + + emsis_to_be_retain = [emsis for emsis in existing_emsis if not emsis in emsis_to_remove] + + if not emsis_to_be_retain: # if all emsis are gone, we need to update the type + if existing_identity['type'] == IdentityType.USER_ASSIGNED.value: + existing_identity['type'] = IdentityType.NONE.value + elif existing_identity['type'] == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: + existing_identity['type'] = IdentityType.SYSTEM_ASSIGNED.value + + existing_identity['userAssignedIdentities'] = {} + for emsis in identities: + existing_identity['userAssignedIdentities'][emsis] = {} + else: + existing_identity['userAssignedIdentities'] = None + + if remove_system_assigned_identity: + if existing_identity['type'] == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value or existing_identity['type'] == IdentityType.USER_ASSIGNED.value: + existing_identity['type'] = IdentityType.USER_ASSIGNED.value + else: + existing_identity['type'] = IdentityType.NONE.value + + result = LongRunningOperation(cmd.cli_ctx)(setter(resource_group_name, name, resource)) + return result.get('identity') or None + + def remove_vm_identity(cmd, resource_group_name, vm_name, identities=None): def setter(resource_group_name, vm_name, vm): - client = _compute_client_factory(cmd.cli_ctx) - VirtualMachineUpdate = cmd.get_models('VirtualMachineUpdate', operation_group='virtual_machines') - vm_update = VirtualMachineUpdate(identity=vm.identity) - return client.virtual_machines.begin_update(resource_group_name, vm_name, vm_update) + command_args = { + 'resource_group': resource_group_name, + 'vm_name': vm_name + } + + from ._vm_utils import IdentityType + if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: + command_args['mi_user_assigned'] = [key for key in list((vm.get('identity').get('userAssignedIdentities') or {}).keys())] + ['UserAssigned'] + elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED.value: + command_args['mi_user_assigned'] = [] + command_args['mi_system_assigned'] = 'True' + elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: + command_args['mi_user_assigned'] = [key for key in list((vm.get('identity').get('userAssignedIdentities') or {}).keys())] + command_args['mi_system_assigned'] = 'True' + else: + command_args['mi_user_assigned'] = [] + + from .operations.vm import VMIdentityRemove + return VMIdentityRemove(cli_ctx=cmd.cli_ctx)(command_args=command_args) if identities is None: from ._vm_utils import MSI_LOCAL_ID identities = [MSI_LOCAL_ID] - return _remove_identities(cmd, resource_group_name, vm_name, identities, get_vm, setter) + return _remove_identities_by_aaz(cmd, resource_group_name, vm_name, identities, get_vm_migrated, setter) # region VirtualMachines Images diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py index f6a706a26f8..2a1d865fafd 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py +++ b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py @@ -3,11 +3,15 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=no-self-use, line-too-long, protected-access, too-few-public-methods, unused-argument, too-many-statements, too-many-branches, too-many-locals +from typing import override +import json + from knack.log import get_logger from azure.cli.core.aaz import AAZStrType -from ..aaz.latest.vm import (Show as _VMShow, ListSizes as _VMListSizes, +from ..aaz.latest.vm import (Show as _VMShow, ListSizes as _VMListSizes, Patch as _VMPatch, Update as _VMUpdate, Capture as _VMCapture, Create as _VMCreate) +from .._vm_utils import IdentityType logger = get_logger(__name__) @@ -155,6 +159,76 @@ def _output(self, *args, **kwargs): return result +class VMIdentityRemove(_VMPatch): + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + + identity = result.get('identity') + if not identity: + return result + + if not identity.get('principalId'): + identity['principalId'] = None + + if not identity.get('tenantId'): + identity['tenantId'] = None + + if not identity.get('userAssignedIdentities'): + identity['userAssignedIdentities'] = None + + return result + + class VirtualMachinesUpdate(_VMPatch.VirtualMachinesUpdate): + def _format_content(self, content): + if type(content) == str: + content = json.loads(content) + + if not content.get('identity'): + content['identity'] = { + 'userAssignedIdentities': None, + 'type': IdentityType.NONE.value + } + return json.dumps(content) + + identities = content.get('identity', {}).get('userAssignedIdentities') + if identities: + if 'UserAssigned' in identities.keys(): + identities.pop('UserAssigned') + + for key in identities.keys(): + identities[key] = None + + if len(content.get('identity', {}).get('userAssignedIdentities', {}).keys()) < 1: + content['identity']['userAssignedIdentities'] = None + + return json.dumps(content) + + def __call__(self, *args, **kwargs): + request = self.make_request() + request.data = self._format_content(request.data) + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + def convert_show_result_to_snake_case(result): new_result = {} if "extendedLocation" in result: From 381c3db78d6cdee677ade2385769d36ac223044a Mon Sep 17 00:00:00 2001 From: william051200 Date: Fri, 19 Dec 2025 14:42:35 +0800 Subject: [PATCH 09/32] [Refractor] - Edited function name --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index d5c14ee0c30..44d2d93f8c1 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -826,7 +826,7 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size # region VirtualMachines Identity def show_vm_identity(cmd, resource_group_name, vm_name): - vm = get_vm_migrated(cmd, resource_group_name, vm_name) + vm = get_vm_by_aaz(cmd, resource_group_name, vm_name) identity = vm.get("identity", {}) if vm else None @@ -851,7 +851,7 @@ def assign_vm_identity(cmd, resource_group_name, vm_name, assign_identity=None, command_args = {'resource_group': resource_group_name, 'vm_name': vm_name} def getter(): - return get_vm_migrated(cmd, resource_group_name, vm_name) + return get_vm_by_aaz(cmd, resource_group_name, vm_name) def setter(vm, external_identities=external_identities): if vm.get('identity') and vm.get('identity').get('type') == system_assigned_user_assigned: @@ -1381,7 +1381,7 @@ def get_instance_view(cmd, resource_group_name, vm_name, include_user_data=False return result -def get_vm_migrated(cmd, resource_group_name, vm_name, expand=None): +def get_vm_by_aaz(cmd, resource_group_name, vm_name, expand=None): from .aaz.latest.vm._show import Show command_args = { 'resource_group': resource_group_name, @@ -2619,7 +2619,7 @@ def setter(resource_group_name, vm_name, vm): from ._vm_utils import MSI_LOCAL_ID identities = [MSI_LOCAL_ID] - return _remove_identities_by_aaz(cmd, resource_group_name, vm_name, identities, get_vm_migrated, setter) + return _remove_identities_by_aaz(cmd, resource_group_name, vm_name, identities, get_vm_by_aaz, setter) # region VirtualMachines Images From 3efea0a6344d0ee6baa90cbd76a8dd3086409ee3 Mon Sep 17 00:00:00 2001 From: william051200 Date: Fri, 19 Dec 2025 16:17:25 +0800 Subject: [PATCH 10/32] [style] - Update code styling --- .../azure/cli/command_modules/vm/_vm_utils.py | 6 ++-- .../azure/cli/command_modules/vm/custom.py | 36 +++++++++++-------- .../cli/command_modules/vm/operations/vm.py | 15 ++------ 3 files changed, 27 insertions(+), 30 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py index a9ea972a019..0fa6a1b1cd1 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py @@ -777,7 +777,7 @@ def assign_identity(cli_ctx, getter, setter, identity_role=None, identity_scope= # create role assignment: if identity_scope: - principal_id = resource.get('identity').get('principal_id') + principal_id = resource.get('identity', {}).get('principal_id') identity_role_id = resolve_role_id(cli_ctx, identity_role, identity_scope) assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments @@ -837,6 +837,6 @@ def resolve_role_id(cli_ctx, role, scope): class IdentityType(Enum): SYSTEM_ASSIGNED = 'SystemAssigned' - USER_ASSIGNED = "UserAssigned" - SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned" + USER_ASSIGNED = 'UserAssigned' + SYSTEM_ASSIGNED_USER_ASSIGNED = 'SystemAssigned, UserAssigned' NONE = 'None' \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 44d2d93f8c1..2e101f913b9 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -874,26 +874,32 @@ def setter(vm, external_identities=external_identities): command_args['mi_user_assigned'] = [] else: command_args['mi_system_assigned'] = "True" + command_args['mi_user_assigned'] = [] if vm.get('identity') and vm.get('identity').get('userAssignedIdentities'): - [command_args['mi_user_assigned'].append(key) for key in list(vm.get('identity').get('userAssignedIdentities').keys())] + for key in vm.get('identity').get('userAssignedIdentities').keys(): + command_args['mi_user_assigned'].append(key) if identity.get('userAssignedIdentities'): - [command_args['mi_user_assigned'].append(key) for key in list(identity.get('userAssignedIdentities').keys()) if key not in command_args['mi_user_assigned']] + for key in identity.get('userAssignedIdentities').keys(): + if key not in command_args['mi_user_assigned']: + command_args['mi_user_assigned'].append(key) from .aaz.latest.vm._patch import Patch - updateVmIdentity = Patch(cli_ctx=cmd.cli_ctx)(command_args=command_args) - LongRunningOperation(cmd.cli_ctx)(updateVmIdentity) - result = updateVmIdentity.result() + update_vm_identity = Patch(cli_ctx=cmd.cli_ctx)(command_args=command_args) + LongRunningOperation(cmd.cli_ctx)(update_vm_identity) + result = update_vm_identity.result() return result from ._vm_utils import assign_identity as assign_identity_helper assign_identity_helper(cmd.cli_ctx, getter, setter, identity_role=identity_role_id, identity_scope=identity_scope) vm = getter() - return _construct_identity_info(identity_scope, identity_role, - vm.get('identity').get('principalId') or None if vm.get('identity') else None, - vm.get('identity').get('userAssignedIdentities') or None if vm.get('identity') else None) + return _construct_identity_info( + identity_scope, + identity_role, + vm.get('identity').get('principalId') if vm.get('identity') else None, + vm.get('identity').get('userAssignedIdentities') if vm.get('identity') else None) # endregion @@ -2518,7 +2524,7 @@ def _remove_identities(cmd, resource_group_name, name, identities, getter, sette return None emsis_to_remove = [] if identities: - existing_emsis = {x.lower() for x in list((resource.identity.user_assigned_identities or {}).keys())} + existing_emsis = {x.lower() for x in (resource.identity.user_assigned_identities or {}).keys()} emsis_to_remove = {x.lower() for x in identities} non_existing = emsis_to_remove.difference(existing_emsis) if non_existing: @@ -2560,18 +2566,18 @@ def _remove_identities_by_aaz(cmd, resource_group_name, name, identities, getter if existing_identity is None: return None - existing_emsis = [x.lower() for x in list((existing_identity.get('userAssignedIdentities') or {}).keys())] + existing_emsis = [x.lower() for x in (existing_identity.get('userAssignedIdentities') or {}).keys()] if identities: emsis_to_remove = [x.lower() for x in identities] - non_existing = [emsis for emsis in emsis_to_remove if not emsis in existing_emsis] + non_existing = [emsis for emsis in emsis_to_remove if emsis not in existing_emsis] if non_existing: raise CLIError("'{}' are not associated with '{}'".format(','.join(non_existing), name)) - emsis_to_be_retain = [emsis for emsis in existing_emsis if not emsis in emsis_to_remove] + emsis_to_retain = [emsis for emsis in existing_emsis if emsis not in emsis_to_remove] - if not emsis_to_be_retain: # if all emsis are gone, we need to update the type + if not emsis_to_retain: # if all emsis are gone, we need to update the type if existing_identity['type'] == IdentityType.USER_ASSIGNED.value: existing_identity['type'] = IdentityType.NONE.value elif existing_identity['type'] == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: @@ -2602,12 +2608,12 @@ def setter(resource_group_name, vm_name, vm): from ._vm_utils import IdentityType if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: - command_args['mi_user_assigned'] = [key for key in list((vm.get('identity').get('userAssignedIdentities') or {}).keys())] + ['UserAssigned'] + command_args['mi_user_assigned'] = [key for key in (vm.get('identity').get('userAssignedIdentities') or {}).keys()] + ['UserAssigned'] elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED.value: command_args['mi_user_assigned'] = [] command_args['mi_system_assigned'] = 'True' elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: - command_args['mi_user_assigned'] = [key for key in list((vm.get('identity').get('userAssignedIdentities') or {}).keys())] + command_args['mi_user_assigned'] = [key for key in (vm.get('identity').get('userAssignedIdentities') or {}).keys()] command_args['mi_system_assigned'] = 'True' else: command_args['mi_user_assigned'] = [] diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py index 2a1d865fafd..448f576705a 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py +++ b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py @@ -180,7 +180,7 @@ def _output(self, *args, **kwargs): class VirtualMachinesUpdate(_VMPatch.VirtualMachinesUpdate): def _format_content(self, content): - if type(content) == str: + if isinstance(content, str): content = json.loads(content) if not content.get('identity'): @@ -195,7 +195,7 @@ def _format_content(self, content): if 'UserAssigned' in identities.keys(): identities.pop('UserAssigned') - for key in identities.keys(): + for key in list(identities.keys()): identities[key] = None if len(content.get('identity', {}).get('userAssignedIdentities', {}).keys()) < 1: @@ -207,16 +207,7 @@ def __call__(self, *args, **kwargs): request = self.make_request() request.data = self._format_content(request.data) session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: + if session.http_response.status_code in [200, 202]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, From 508a352e6f64345f7ea8e1fc9626aa92bb27fbe5 Mon Sep 17 00:00:00 2001 From: william051200 Date: Mon, 22 Dec 2025 07:17:07 +0800 Subject: [PATCH 11/32] [style] - Update code styling --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 2 ++ src/azure-cli/azure/cli/command_modules/vm/operations/vm.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 2e101f913b9..19efc1ffa43 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -1399,10 +1399,12 @@ def get_vm_by_aaz(cmd, resource_group_name, vm_name, expand=None): return Show(cli_ctx=cmd.cli_ctx)(command_args=command_args) + def get_vm(cmd, resource_group_name, vm_name, expand=None): client = _compute_client_factory(cmd.cli_ctx) return client.virtual_machines.get(resource_group_name, vm_name, expand=expand) + def get_vm_to_update(cmd, resource_group_name, vm_name): client = _compute_client_factory(cmd.cli_ctx) vm = client.virtual_machines.get(resource_group_name, vm_name) diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py index 448f576705a..97035578302 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py +++ b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py @@ -3,7 +3,6 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=no-self-use, line-too-long, protected-access, too-few-public-methods, unused-argument, too-many-statements, too-many-branches, too-many-locals -from typing import override import json from knack.log import get_logger From f4d46583b43dd39b6f0851312a38917f180615a5 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 11:21:42 +0800 Subject: [PATCH 12/32] [test] - fixed test_vm_explicit_msi test case --- .../recordings/test_vm_explicit_msi.yaml | 8286 ++++------------- .../vm/tests/latest/test_vm_commands.py | 4 +- 2 files changed, 1609 insertions(+), 6681 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml index 35f2a9c8ae1..c34f37452bf 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n --tags User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-03-31T07:40:30Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-23T03:14:48Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:32 GMT + - Tue, 23 Dec 2025 03:14:52 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: EB508703D6AE4311A40E6A899C1A8ACB Ref B: TYO201151005023 Ref C: 2025-03-31T07:40:32Z' + - 'Ref A: A6F76253D6C448539DECE5EB9F518753 Ref B: SG2AA1070304025 Ref C: 2025-12-23T03:14:53Z' status: code: 200 message: OK @@ -63,21 +63,21 @@ interactions: ParameterSetName: - -g -n --tags User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{"tag1":"d1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1","name":"id1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"9a7b1988-7c7f-452b-a56b-426c29795f76","clientId":"e78d08d8-95cc-4709-80ad-6d6643703a0c"}}' + string: '{"location":"westus","tags":{"tag1":"d1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1","name":"id1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"2aa7b9ee-ff03-4bb2-81ce-f08e31e01a73","clientId":"1ef9daa7-2a11-477a-805a-2bff345cd466"}}' headers: cache-control: - no-cache content-length: - - '435' + - '459' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:35 GMT + - Tue, 23 Dec 2025 03:14:54 GMT expires: - '-1' location: @@ -91,13 +91,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/53c571eb-d361-470d-b119-01d064f8de6b + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/c03c2994-6ace-4d9b-9552-62bbce7955be x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 57C1770F82C84C09BFFB8A6DA50057D3 Ref B: TYO201151004052 Ref C: 2025-03-31T07:40:33Z' + - 'Ref A: B4C276CCA0284FFB88E36F7940438487 Ref B: SG2AA1040519040 Ref C: 2025-12-23T03:14:53Z' status: code: 201 message: Created @@ -115,21 +115,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-03-31T07:40:30Z","module":"vm","DateCreated":"2025-03-31T07:40:32Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-23T03:14:48Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '430' + - '354' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:36 GMT + - Tue, 23 Dec 2025 03:14:55 GMT expires: - '-1' pragma: @@ -143,7 +143,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 69F79FD744F84ABBB218BE151D10FD39 Ref B: TYO201100117021 Ref C: 2025-03-31T07:40:37Z' + - 'Ref A: 29CD54BC8CB340E4A3B8BA7EA97DDDAC Ref B: SG2AA1070302023 Ref C: 2025-12-23T03:14:55Z' status: code: 200 message: OK @@ -165,21 +165,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2","name":"id2","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"4b3a089d-c7c6-4687-9afa-76b3842348f6","clientId":"0c0be429-250f-4828-8fae-b737d2e92996"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2","name":"id2","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"0817260b-b83e-4b68-a60a-a6ff700993c5","clientId":"5665a77a-315a-4412-815f-4b152063bdf2"}}' headers: cache-control: - no-cache content-length: - - '424' + - '448' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:39 GMT + - Tue, 23 Dec 2025 03:14:57 GMT expires: - '-1' location: @@ -193,13 +193,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/bf061a7e-4ad6-45ed-ab73-360a9423acfe + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/038c8d6a-4523-4501-983b-327799a90599 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 3042D1DA8F9F4AAF84F1399592500848 Ref B: TYO201100116045 Ref C: 2025-03-31T07:40:37Z' + - 'Ref A: 78BCC9E9A4EC420DA2ACC1288ED885A4 Ref B: SG2AA1070304036 Ref C: 2025-12-23T03:14:56Z' status: code: 201 message: Created @@ -218,21 +218,21 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-03-31T07:40:30Z","module":"vm","DateCreated":"2025-03-31T07:40:32Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-23T03:14:48Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '430' + - '354' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:39 GMT + - Tue, 23 Dec 2025 03:14:59 GMT expires: - '-1' pragma: @@ -246,7 +246,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F0D8C713BA72432589B5103C7C22BD7D Ref B: TYO201151001031 Ref C: 2025-03-31T07:40:40Z' + - 'Ref A: 144C54EB0A2448A689797A52FB0EF582 Ref B: SG2AA1070301029 Ref C: 2025-12-23T03:14:59Z' status: code: 200 message: OK @@ -265,23 +265,23 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '273' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:40 GMT + - Tue, 23 Dec 2025 03:15:00 GMT expires: - '-1' pragma: @@ -293,13 +293,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/58b3fda9-3940-4b96-b04b-c7554f728799 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/e14022a1-df35-4deb-a7b8-1b516ddae163 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F9D966824D5F48AEA1E561AD8C6E4EDE Ref B: TYO201151005042 Ref C: 2025-03-31T07:40:41Z' + - 'Ref A: FF7DA2D042EB4E72A34AD4BF98E7A1F8 Ref B: SG2AA1070305054 Ref C: 2025-12-23T03:14:59Z' status: code: 200 message: OK @@ -318,32 +318,35 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:41 GMT + - Tue, 23 Dec 2025 03:15:00 GMT expires: - '-1' pragma: @@ -355,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/56ed72a6-85b5-488f-9977-dfdd9bee2567 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/d56768bc-438a-4201-b772-49fca81a4720 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73936 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73986 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BB96066A95274E62A02908470AB2A90F Ref B: TYO201151003062 Ref C: 2025-03-31T07:40:42Z' + - 'Ref A: 97983A9D98214A1BAA3D9593AD86D7D2 Ref B: SG2AA1040518042 Ref C: 2025-12-23T03:15:00Z' status: code: 200 message: OK @@ -380,7 +383,7 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -394,8 +397,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -404,8 +408,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -414,8 +419,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -424,8 +430,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -434,8 +441,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -443,8 +451,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -452,8 +461,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -461,8 +471,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -470,8 +481,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -480,8 +492,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -490,8 +503,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -500,8 +514,20 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -509,31 +535,43 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -541,10 +579,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -552,10 +590,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -563,44 +601,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -608,70 +641,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -679,20 +712,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -700,9 +733,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -710,10 +743,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -721,10 +753,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -732,10 +763,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -743,10 +773,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -754,20 +784,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -775,10 +805,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -786,48 +816,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -835,20 +866,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -856,28 +887,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -885,113 +916,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -1000,8 +1014,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -1011,107 +1025,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -1119,38 +1138,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1158,33 +1178,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1192,43 +1208,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1236,16 +1248,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1253,10 +1259,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -1264,16 +1270,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -1281,20 +1281,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -1302,16 +1301,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1319,10 +1311,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1330,10 +1322,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -1341,10 +1333,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -1352,10 +1344,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1363,10 +1355,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1374,33 +1366,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1408,10 +1396,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1419,10 +1418,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1430,10 +1440,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -1441,261 +1451,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1703,16 +1713,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1720,20 +1724,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -1741,10 +1745,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1752,20 +1755,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1773,106 +1776,123 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217556' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:42 GMT + - Tue, 23 Dec 2025 03:15:01 GMT expires: - '-1' pragma: @@ -1884,9 +1904,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 588154A1C3F2480B89CBC613FB260AD7 Ref B: TYO201151003025 Ref C: 2025-03-31T07:40:42Z' + - 'Ref A: B52C7BCB91A841C89D7FDA9901254C1B Ref B: SG2AA1070304042 Ref C: 2025-12-23T03:15:01Z' status: code: 200 message: OK @@ -1905,7 +1925,7 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -1921,7 +1941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:42 GMT + - Tue, 23 Dec 2025 03:15:02 GMT expires: - '-1' pragma: @@ -1935,7 +1955,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: F5454D3501624E15BE35AE6470B67875 Ref B: TYO201151002034 Ref C: 2025-03-31T07:40:43Z' + - 'Ref A: 33A8EC28F1CF4693B7E572F5CCFC3506 Ref B: SG2AA1070302042 Ref C: 2025-12-23T03:15:02Z' status: code: 404 message: Not Found @@ -1954,23 +1974,23 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '273' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:43 GMT + - Tue, 23 Dec 2025 03:15:03 GMT expires: - '-1' pragma: @@ -1982,13 +2002,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b309439d-5b0d-4ebd-b095-f09b504e7de7 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0e19dcc8-dff9-4ea7-9053-4ec5dc4d3f1a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9EC490CE4BF44F1BAF17AB25EDC4986C Ref B: TYO201100114017 Ref C: 2025-03-31T07:40:44Z' + - 'Ref A: 830CCB2EA8F84C528C4EEB2FDAB698AB Ref B: SG2AA1070306031 Ref C: 2025-12-23T03:15:03Z' status: code: 200 message: OK @@ -2007,32 +2027,35 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:44 GMT + - Tue, 23 Dec 2025 03:15:04 GMT expires: - '-1' pragma: @@ -2044,13 +2067,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/657468d9-ec71-486d-aa30-c71e207093be + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/d3643ce7-926c-4993-8f57-757f815d37a6 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73935 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73985 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6555CB27DB0044DABDCEE4D16920ABB4 Ref B: TYO201151006036 Ref C: 2025-03-31T07:40:45Z' + - 'Ref A: 6EF38E478C6647FFAF37355B02932388 Ref B: SG2AA1040512040 Ref C: 2025-12-23T03:15:03Z' status: code: 200 message: OK @@ -2069,23 +2092,23 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '273' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:45 GMT + - Tue, 23 Dec 2025 03:15:05 GMT expires: - '-1' pragma: @@ -2097,13 +2120,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/42300655-3612-437c-8029-0ac9ba724b1c + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/3a0155f7-5ba4-42ae-bcba-7c3e1faf1370 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43926 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 260FE83A4FF04B6692511BF6A73E7C3D Ref B: TYO201100114035 Ref C: 2025-03-31T07:40:45Z' + - 'Ref A: 98C767BE3B434821A8339748BD3C0663 Ref B: SG2AA1070305062 Ref C: 2025-12-23T03:15:04Z' status: code: 200 message: OK @@ -2122,32 +2145,35 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:46 GMT + - Tue, 23 Dec 2025 03:15:05 GMT expires: - '-1' pragma: @@ -2159,13 +2185,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ce9f2286-8a61-407d-ba9c-70b61e3e0e31 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/641816dd-365f-4b66-86ce-1f31525082d5 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73934 + - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73984 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BD22B229CC0E4F42B0E6BDA15887CB36 Ref B: TYO201151005060 Ref C: 2025-03-31T07:40:46Z' + - 'Ref A: 5640C83B122F4F0BBCD09D6039D4D6D8 Ref B: SG2AA1040513040 Ref C: 2025-12-23T03:15:05Z' status: code: 200 message: OK @@ -2184,7 +2210,7 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -2198,8 +2224,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -2208,8 +2235,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -2218,8 +2246,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -2228,8 +2257,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -2238,8 +2268,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -2247,8 +2278,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -2256,8 +2288,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -2265,8 +2298,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -2274,8 +2308,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -2284,8 +2319,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -2294,8 +2330,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -2304,8 +2341,20 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -2313,31 +2362,43 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2345,10 +2406,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2356,10 +2417,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2367,44 +2428,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2412,70 +2468,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2483,20 +2539,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2504,9 +2560,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -2514,10 +2570,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2525,10 +2580,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2536,10 +2590,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2547,10 +2600,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2558,20 +2611,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2579,10 +2632,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2590,48 +2643,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2639,20 +2693,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -2660,28 +2714,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2689,113 +2743,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -2804,8 +2841,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -2815,107 +2852,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -2923,38 +2965,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2962,33 +3005,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2996,43 +3035,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3040,16 +3075,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3057,10 +3086,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -3068,16 +3097,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -3085,20 +3108,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -3106,16 +3128,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3123,10 +3138,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3134,10 +3149,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -3145,10 +3160,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -3156,10 +3171,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -3167,10 +3182,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3178,33 +3193,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3212,10 +3223,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3223,10 +3245,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3234,10 +3267,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -3245,261 +3278,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3507,16 +3540,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3524,20 +3551,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -3545,10 +3572,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3556,20 +3582,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3577,106 +3603,123 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217725' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:48 GMT + - Tue, 23 Dec 2025 03:15:07 GMT expires: - '-1' pragma: @@ -3688,9 +3731,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: EE7E01C5320F44D490229BA216FB1163 Ref B: TYO201151006054 Ref C: 2025-03-31T07:40:47Z' + - 'Ref A: 76535EAC18D04ECDAEB26BC23CD4F954 Ref B: SG2AA1040520029 Ref C: 2025-12-23T03:15:06Z' status: code: 200 message: OK @@ -3709,9 +3752,9 @@ interactions: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2025-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1'' @@ -3725,7 +3768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:51 GMT + - Tue, 23 Dec 2025 03:15:08 GMT expires: - '-1' pragma: @@ -3739,7 +3782,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: A0B4542F5A8B4ED8B4579B9F9DDCBEA2 Ref B: TYO201151002062 Ref C: 2025-03-31T07:40:51Z' + - 'Ref A: 0D3A5280045A49CD8888A6F1BFA642A7 Ref B: SG2AA1040518060 Ref C: 2025-12-23T03:15:08Z' status: code: 404 message: Not Found @@ -3767,10 +3810,10 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vm2", - "adminUsername": "ubuntuadmin", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt", + null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": + "10", "version": "latest"}}, "osProfile": {"computerName": "vm2", "adminUsername": + "ubuntuadmin", "linuxConfiguration": {"disablePasswordAuthentication": true, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkOh2iDfHe9rJRL86GH7eUB+T08MZ+PmiPzJobcaOkOwTYfihPwsuKqbNXXB4C075i+jh3tm5pfBebJz5FNiwM+w5zyjFyCrNlaEzvzcQs79zAozhep1KEckN6dd5xjk3rvwmzHh4ZpofK79H1OkJv09kyQkF9y2cNSJgsEtjq1ToUTJXRpPYSxwpvd6CFFCS7GShuMQk/djrN7bVXSoIIPRyLiN73UD574HvnKGS13OYtmCAXrYUuruqrhXCBkpB/Z4IvQEbuR/TsFPCc54ek6Sm0UXZOp/iXYkXFoRZEVHQhUwj9g6NJz4zR/F3ZdgyYQfIHJ+tY+5UaoLwYNn2B", "path": "/home/ubuntuadmin/.ssh/authorized_keys"}]}}}}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1": {}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' @@ -3784,30 +3827,35 @@ interactions: Connection: - keep-alive Content-Length: - - '3431' + - '3418' Content-Type: - application/json ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet --vnet-name --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_wHwyQC0RIDBGup8gfI8S0FXMvneDJ1NA","name":"vm_deploy_wHwyQC0RIDBGup8gfI8S0FXMvneDJ1NA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5481327657029608548","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-31T07:40:53.3115637Z","duration":"PT0.0005125S","correlationId":"344c5c09-8644-469c-b6db-3ae9459bd3e2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"error":{"code":"InvalidTemplateDeployment","message":"The template + deployment ''vm_deploy_8xvwmlvh4hBhQvGiFt8AgMzBBsIP964w'' is not valid according + to the validation procedure. The tracking id is ''044d906f-084b-4eb2-b7d6-4e9dadf4affd''. + See inner errors for details.","details":[{"code":"SkuNotAvailable","message":"The + requested VM size for resource ''Following SKUs have failed for Capacity Restrictions: + Standard_DS1_v2'' is currently not available in location ''westus''. Please + try another size or deploy to a different location or different zone. See + https://aka.ms/azureskunotavailable for details."}]}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_wHwyQC0RIDBGup8gfI8S0FXMvneDJ1NA/operationStatuses/08584582000321597393?api-version=2024-11-01&t=638790036571553547&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=AfaR0XX0BiyNoH1cJEwJ5bIaMqxiXhurqhCyh2Pp6RbcvNIN4cOfLn1xvNxBnLTL-W-2gFWv9rYb5blA4UrcXek8mdxxxtcSzKmGazHL1Cj6aJemma30wg13AsEuue-sklwD5rpIgiQmRVpuEANuaVc7Mbx5YGJhLtK4Z3Qdlgq-Sf6wa5WaFGyMfWIJ4ZZN2EakLfxT6p7-VGD-SFB4AinOFrlZogASIY7fcZi84CiiLfWaNMSyHrAX7o3GRP89rllEFYr0jiDW3k_lKTSOtBWBb8LruaWrPEjrk5siASNmTvlTnh73p9NwVvL9Yty7m_mPnwzm_fBxDtK-8g27yQ&h=u4Ti3WjKhUVv090ps3-YfvEVz4jhocITV9OGsa9ED3Q cache-control: - no-cache content-length: - - '2325' + - '605' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:40:56 GMT + - Tue, 23 Dec 2025 03:15:14 GMT expires: - '-1' pragma: @@ -3818,5135 +3866,15 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-deployment-engine-version: - - 1.280.0 + x-ms-failure-cause: + - gateway x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 8173628E91EB4DA5831F8B0ACADD2FC5 Ref B: TYO201100114047 Ref C: 2025-03-31T07:40:52Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584582000321597393?api-version=2024-11-01&t=638790036571553547&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=AfaR0XX0BiyNoH1cJEwJ5bIaMqxiXhurqhCyh2Pp6RbcvNIN4cOfLn1xvNxBnLTL-W-2gFWv9rYb5blA4UrcXek8mdxxxtcSzKmGazHL1Cj6aJemma30wg13AsEuue-sklwD5rpIgiQmRVpuEANuaVc7Mbx5YGJhLtK4Z3Qdlgq-Sf6wa5WaFGyMfWIJ4ZZN2EakLfxT6p7-VGD-SFB4AinOFrlZogASIY7fcZi84CiiLfWaNMSyHrAX7o3GRP89rllEFYr0jiDW3k_lKTSOtBWBb8LruaWrPEjrk5siASNmTvlTnh73p9NwVvL9Yty7m_mPnwzm_fBxDtK-8g27yQ&h=u4Ti3WjKhUVv090ps3-YfvEVz4jhocITV9OGsa9ED3Q - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:40:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3746' - x-msedge-ref: - - 'Ref A: 2BB16EF68A4F433F8107F62637D4FA33 Ref B: TYO201100114047 Ref C: 2025-03-31T07:40:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584582000321597393?api-version=2024-11-01&t=638790036571553547&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=AfaR0XX0BiyNoH1cJEwJ5bIaMqxiXhurqhCyh2Pp6RbcvNIN4cOfLn1xvNxBnLTL-W-2gFWv9rYb5blA4UrcXek8mdxxxtcSzKmGazHL1Cj6aJemma30wg13AsEuue-sklwD5rpIgiQmRVpuEANuaVc7Mbx5YGJhLtK4Z3Qdlgq-Sf6wa5WaFGyMfWIJ4ZZN2EakLfxT6p7-VGD-SFB4AinOFrlZogASIY7fcZi84CiiLfWaNMSyHrAX7o3GRP89rllEFYr0jiDW3k_lKTSOtBWBb8LruaWrPEjrk5siASNmTvlTnh73p9NwVvL9Yty7m_mPnwzm_fBxDtK-8g27yQ&h=u4Ti3WjKhUVv090ps3-YfvEVz4jhocITV9OGsa9ED3Q - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:41:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B2DB80CEDC964040875A6E6CED685759 Ref B: TYO201100114047 Ref C: 2025-03-31T07:41:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584582000321597393?api-version=2024-11-01&t=638790036571553547&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=AfaR0XX0BiyNoH1cJEwJ5bIaMqxiXhurqhCyh2Pp6RbcvNIN4cOfLn1xvNxBnLTL-W-2gFWv9rYb5blA4UrcXek8mdxxxtcSzKmGazHL1Cj6aJemma30wg13AsEuue-sklwD5rpIgiQmRVpuEANuaVc7Mbx5YGJhLtK4Z3Qdlgq-Sf6wa5WaFGyMfWIJ4ZZN2EakLfxT6p7-VGD-SFB4AinOFrlZogASIY7fcZi84CiiLfWaNMSyHrAX7o3GRP89rllEFYr0jiDW3k_lKTSOtBWBb8LruaWrPEjrk5siASNmTvlTnh73p9NwVvL9Yty7m_mPnwzm_fBxDtK-8g27yQ&h=u4Ti3WjKhUVv090ps3-YfvEVz4jhocITV9OGsa9ED3Q - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:41:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 993E42A0109941DEB4ED04FB62690859 Ref B: TYO201100114047 Ref C: 2025-03-31T07:41:59Z' + - 'Ref A: F84F05BAEC3B407DBE71B5D9FC7A48C6 Ref B: SG2AA1040513060 Ref C: 2025-12-23T03:15:09Z' status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_wHwyQC0RIDBGup8gfI8S0FXMvneDJ1NA","name":"vm_deploy_wHwyQC0RIDBGup8gfI8S0FXMvneDJ1NA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5481327657029608548","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-31T07:41:56.0436701Z","correlationId":"344c5c09-8644-469c-b6db-3ae9459bd3e2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '3066' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:41:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' - x-msedge-ref: - - 'Ref A: C66F125F59954A63A47ED05B021F7641 Ref B: TYO201100114047 Ref C: 2025-03-31T07:42:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n - \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"20adcdf2-1cf5-46d6-a5b9-2974dc2b5a2e\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm2_OsDisk_1_d3feaa8940b546ed9ef70ae4b9b69264\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_d3feaa8940b546ed9ef70ae4b9b69264\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n - \ \"displayStatus\": \"Not Ready\",\r\n \"message\": - \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2025-03-31T07:42:01+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm2_OsDisk_1_d3feaa8940b546ed9ef70ae4b9b69264\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:41:17.7880848+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:41:53.4915425+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-31T07:41:14.5380775+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '4113' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23989,Microsoft.Compute/LowCostGetResource;33 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E8E90F095A454ACD8D6E77626277BCB5 Ref B: TYO201100116037 Ref C: 2025-03-31T07:42:01Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2022-01-01 - response: - body: - string: '{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"89f37be3-d9d1-40d9-bd8b-48f72585c3cc\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1db7c680-f157-422e-a1ba-7e42cb5da0f9","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"89f37be3-d9d1-40d9-bd8b-48f72585c3cc\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"lc5q2r3td4nejol1g5rmovidwd.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-31-64-2F","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' - headers: - cache-control: - - no-cache - content-length: - - '1927' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:02 GMT - etag: - - W/"89f37be3-d9d1-40d9-bd8b-48f72585c3cc" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 51baee67-7457-4da2-a502-a7704e9b8c36 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 6DC0EDBCCF7F4C6C9B0125431BD1A7B8 Ref B: TYO201151001060 Ref C: 2025-03-31T07:42:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2022-01-01 - response: - body: - string: '{"name":"vm2PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","etag":"W/\"9a836b07-6fa0-4d42-96d0-fa58b28f4cf8\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0e7961d0-76b0-4232-92cb-6c5ccc5c9c0d","ipAddress":"172.184.112.8","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' - headers: - cache-control: - - no-cache - content-length: - - '771' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:03 GMT - etag: - - W/"9a836b07-6fa0-4d42-96d0-fa58b28f4cf8" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 25e46448-498b-476c-a524-eba08921fe6a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0B352E75EEF140A69D7E6E7616D9A9CC Ref B: TYO201151003054 Ref C: 2025-03-31T07:42:03Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"fc741d8b-d344-4b99-9e3f-9aae5f86babb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGGBQQNIVMP6/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '664' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:07 GMT - etag: - - W/"fc741d8b-d344-4b99-9e3f-9aae5f86babb" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 323ba5de-b739-4533-a9a1-cd3e79724f9e - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/9dd0583b-30b2-4bb4-982a-4806f424177f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 87FACE2CF6F047A7BD70BABD3C932971 Ref B: TYO201151004023 Ref C: 2025-03-31T07:42:07Z' - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", - "name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": - false, "delegations": [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": - "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - Content-Length: - - '424' - Content-Type: - - application/json - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"45c15267-8db4-4cc3-9924-da0d3aadd2d2\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8beff5d5-8356-4d13-8046-93dfff286883?api-version=2024-01-01&t=638790037286776985&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=RHIcVLpdg_LQQBFAdxBGIVu3bVG4qQGer6IxdENk8VGXgluegtW-q8IrOzRkWot4IrkcebsGdViHqzs0URrY1C9A8ucPxv074yF4GAoT-_EPa3qObdm6VRZqSzohhCjaWfVKkcaygJP7xp1IOxi5JxW5aKpbaopMuCCLnmuAMKAbW_Q7aHgwMikM1uM_mlli2RkHLPHPcyibuXfMDOm_Mm9sJtsU8uam2ayY3PQce7bIioK04Nm9PBUw1kfndMA6nBs9bo3bmGG3PmbOsIOpLlyyNuNJ8U3dG2HKnpUlQSnHb9k97YHX6Dn_NU1nehz6Og29XI9ZYjIpyp0x549hjg&h=LsqiPb40hz8gevwkMQZgpetobn2pmYoOLUQX8AkFb50 - cache-control: - - no-cache - content-length: - - '689' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 21f70600-b885-41ab-a134-7641a7813179 - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/7d4ab1ce-8768-4eaa-8d3c-8bdb7c37e4b1 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: A8C23C9E27AD448E8702398F4CCA973A Ref B: TYO201151004023 Ref C: 2025-03-31T07:42:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8beff5d5-8356-4d13-8046-93dfff286883?api-version=2024-01-01&t=638790037286776985&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=RHIcVLpdg_LQQBFAdxBGIVu3bVG4qQGer6IxdENk8VGXgluegtW-q8IrOzRkWot4IrkcebsGdViHqzs0URrY1C9A8ucPxv074yF4GAoT-_EPa3qObdm6VRZqSzohhCjaWfVKkcaygJP7xp1IOxi5JxW5aKpbaopMuCCLnmuAMKAbW_Q7aHgwMikM1uM_mlli2RkHLPHPcyibuXfMDOm_Mm9sJtsU8uam2ayY3PQce7bIioK04Nm9PBUw1kfndMA6nBs9bo3bmGG3PmbOsIOpLlyyNuNJ8U3dG2HKnpUlQSnHb9k97YHX6Dn_NU1nehz6Og29XI9ZYjIpyp0x549hjg&h=LsqiPb40hz8gevwkMQZgpetobn2pmYoOLUQX8AkFb50 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 12df799e-d65c-423e-826f-b63989e6abaa - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/692df68a-b11b-47eb-9c31-95169ea6dbad - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BD3A08CA687B42DBB788A1713F7F2551 Ref B: TYO201151004023 Ref C: 2025-03-31T07:42:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"104bb13a-eb36-43cf-98ff-22455dad485e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGGBQQNIVMP6/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '694' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:08 GMT - etag: - - W/"104bb13a-eb36-43cf-98ff-22455dad485e" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4be8b666-5b17-4253-90c7-e5e65d9abf02 - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/d404a947-465f-46f1-ac63-0a2023d27825 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 1D643412A05F4C4ABC2D0D85DFDCC13F Ref B: TYO201151004023 Ref C: 2025-03-31T07:42:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-03-31T07:40:30Z","module":"vm","DateCreated":"2025-03-31T07:40:32Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '430' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D3D9B362406B4202A9BE1CC89E6C3AE0 Ref B: TYO201151003054 Ref C: 2025-03-31T07:42:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '286' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/7628fa13-1588-46e8-bf2c-738e88199fe0 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43920 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 251A7EA66E86401183383B7D9134D558 Ref B: TYO201151006042 Ref C: 2025-03-31T07:42:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1025' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/bd0b7057-c448-4d6d-88ab-32278ad77260 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73929 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 58399842406D4EA695AE281FBB35C5E3 Ref B: TYO201100114031 Ref C: 2025-03-31T07:42:11Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Brazil South","Australia - East","Australia Southeast","Central India","South India","West India","Canada - Central","Canada East","West Central US","West US 2","UK West","UK South","France - Central","Australia Central","Japan West","Japan East","Korea Central","Korea - South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, - SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar - Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '209850' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3199B907471C4254B14260C5D5555118 Ref B: TYO201100114017 Ref C: 2025-03-31T07:42:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"104bb13a-eb36-43cf-98ff-22455dad485e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGGBQQNIVMP6/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '694' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:21 GMT - etag: - - W/"104bb13a-eb36-43cf-98ff-22455dad485e" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 85854561-b82f-4588-98b7-dfee42410002 - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/e122628e-eec3-454b-9f42-e382afe563c8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6F10E341E3654BD6902F3F8DCFA39A0A Ref B: TYO201151002040 Ref C: 2025-03-31T07:42:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27reader%27&api-version=2022-05-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Reader","type":"BuiltInRole","description":"View - all resources, but does not allow you to make any changes.","assignableScopes":["/"],"permissions":[{"actions":["*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:47.8628684Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","type":"Microsoft.Authorization/roleDefinitions","name":"acdd72a7-3385-48ef-bd42-f606fba81ae7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '627' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b4718670-1406-4fd0-abae-9068716daf2c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D6FB106CE8E54C9EBD712AA11076CFC2 Ref B: TYO201151002031 Ref C: 2025-03-31T07:42:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '286' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/7b0b673d-930d-4b36-8dad-e670b6a57c4a - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43919 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: D284CDDE59FD4950A6BF57E5F9ACC7AA Ref B: TYO201151003034 Ref C: 2025-03-31T07:42:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1025' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/a3f3c099-e18d-4a76-abb0-043daa2eed7f - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73928 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FBDA3E50C1814C13B946EEC22BF9F77B Ref B: TYO201100115051 Ref C: 2025-03-31T07:42:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '286' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/fcf805e5-acc9-4e0d-a917-5e34dcdc6aae - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43918 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 631A072C528346569302F7E062121E9E Ref B: TYO201100117045 Ref C: 2025-03-31T07:42:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1025' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ca914005-41c4-4d04-82db-4303eb01165b - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73927 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7126E2195E74417AB81A09A5060D3490 Ref B: TYO201151003029 Ref C: 2025-03-31T07:42:25Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm1NSG", "apiVersion": - "2015-06-15", "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": - "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm1PublicIP", - "location": "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": - "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": - "Microsoft.Network/networkInterfaces", "name": "vm1VMNic", "location": "westus", - "tags": {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vm1NSG", - "Microsoft.Network/publicIpAddresses/vm1PublicIP"], "properties": {"ipConfigurations": - [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod": "Dynamic", - "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, - {"name": "7237bcb3-d2ef-412e-94d3-0e780a28adcd", "type": "Microsoft.Authorization/roleAssignments", - "apiVersion": "2015-07-01", "dependsOn": ["Microsoft.Compute/virtualMachines/vm1"], - "properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "[reference(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1'', - ''2019-07-01'', ''Full'').identity.principalId]", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001"}}, - {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic", - "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vm1", - "adminUsername": "ubuntuadmin", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt", - "path": "/home/ubuntuadmin/.ssh/authorized_keys"}]}}}}, "identity": {"type": - "SystemAssigned,UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1": - {}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Length: - - '3775' - Content-Type: - - application/json - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_vOUmDZbiu7LdOBfnkDAPhutGwyuZh0Zf","name":"vm_deploy_vOUmDZbiu7LdOBfnkDAPhutGwyuZh0Zf","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11920607718308922673","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-31T07:42:28.3323681Z","duration":"PT0.0007514S","correlationId":"4f8a7f91-4dfd-4bf7-bdbf-4e644cb291b3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/7237bcb3-d2ef-412e-94d3-0e780a28adcd","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"7237bcb3-d2ef-412e-94d3-0e780a28adcd"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_vOUmDZbiu7LdOBfnkDAPhutGwyuZh0Zf/operationStatuses/08584581999371369137?api-version=2024-11-01&t=638790037529104567&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=OyVC0i-xlnlkaI_Q60yGEmeDjWmCRpUqx3rsgcNdiNjevlmHM1uhLPJzTA2ZgfmgqxDFJaQraAcUN_ksd-8SDtUA73-5G02_uBJNTdeeqLZCpjWk2I6bgYuMg5I-X9-P-CGRFDPlCteHAMilOwzGUXRhT-RMHotwZTRr8HETs4WnedAMLzLnNfCmVzgq4yb8HtA9roVPGz-WdgpycdVilcBhIf6IsK8aT4YtKS_OkAxEEYq8l6fsyOJyNq7oW0y-rSqunnanDp5gW8FWVgZSWNjBhmUIJGLd_Vwm9nOVyhqIj45eljogSW6ISJdq3Fh8nhrUxC5vOwZu1q9cJnQe5Q&h=pfL3iCoJPiFTO8f86ZMFUf11u164Sn2FdiaiKNDabdE - cache-control: - - no-cache - content-length: - - '2920' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-deployment-engine-version: - - 1.280.0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: B7D0C5D0469E4287823A4FFB6A84A82B Ref B: TYO201151002031 Ref C: 2025-03-31T07:42:26Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581999371369137?api-version=2024-11-01&t=638790037529104567&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=OyVC0i-xlnlkaI_Q60yGEmeDjWmCRpUqx3rsgcNdiNjevlmHM1uhLPJzTA2ZgfmgqxDFJaQraAcUN_ksd-8SDtUA73-5G02_uBJNTdeeqLZCpjWk2I6bgYuMg5I-X9-P-CGRFDPlCteHAMilOwzGUXRhT-RMHotwZTRr8HETs4WnedAMLzLnNfCmVzgq4yb8HtA9roVPGz-WdgpycdVilcBhIf6IsK8aT4YtKS_OkAxEEYq8l6fsyOJyNq7oW0y-rSqunnanDp5gW8FWVgZSWNjBhmUIJGLd_Vwm9nOVyhqIj45eljogSW6ISJdq3Fh8nhrUxC5vOwZu1q9cJnQe5Q&h=pfL3iCoJPiFTO8f86ZMFUf11u164Sn2FdiaiKNDabdE - response: - body: - string: '{"status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:42:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 07496B96D86D48C996EF3B7B131029C2 Ref B: TYO201151002031 Ref C: 2025-03-31T07:42:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581999371369137?api-version=2024-11-01&t=638790037529104567&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=OyVC0i-xlnlkaI_Q60yGEmeDjWmCRpUqx3rsgcNdiNjevlmHM1uhLPJzTA2ZgfmgqxDFJaQraAcUN_ksd-8SDtUA73-5G02_uBJNTdeeqLZCpjWk2I6bgYuMg5I-X9-P-CGRFDPlCteHAMilOwzGUXRhT-RMHotwZTRr8HETs4WnedAMLzLnNfCmVzgq4yb8HtA9roVPGz-WdgpycdVilcBhIf6IsK8aT4YtKS_OkAxEEYq8l6fsyOJyNq7oW0y-rSqunnanDp5gW8FWVgZSWNjBhmUIJGLd_Vwm9nOVyhqIj45eljogSW6ISJdq3Fh8nhrUxC5vOwZu1q9cJnQe5Q&h=pfL3iCoJPiFTO8f86ZMFUf11u164Sn2FdiaiKNDabdE - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:43:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 37D21CEE1094467FA82517C3B3111577 Ref B: TYO201151002031 Ref C: 2025-03-31T07:43:04Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581999371369137?api-version=2024-11-01&t=638790037529104567&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=OyVC0i-xlnlkaI_Q60yGEmeDjWmCRpUqx3rsgcNdiNjevlmHM1uhLPJzTA2ZgfmgqxDFJaQraAcUN_ksd-8SDtUA73-5G02_uBJNTdeeqLZCpjWk2I6bgYuMg5I-X9-P-CGRFDPlCteHAMilOwzGUXRhT-RMHotwZTRr8HETs4WnedAMLzLnNfCmVzgq4yb8HtA9roVPGz-WdgpycdVilcBhIf6IsK8aT4YtKS_OkAxEEYq8l6fsyOJyNq7oW0y-rSqunnanDp5gW8FWVgZSWNjBhmUIJGLd_Vwm9nOVyhqIj45eljogSW6ISJdq3Fh8nhrUxC5vOwZu1q9cJnQe5Q&h=pfL3iCoJPiFTO8f86ZMFUf11u164Sn2FdiaiKNDabdE - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:43:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FBE00A195E9D4517A11979F760517FD8 Ref B: TYO201151002031 Ref C: 2025-03-31T07:43:35Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581999371369137?api-version=2024-11-01&t=638790037529104567&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=OyVC0i-xlnlkaI_Q60yGEmeDjWmCRpUqx3rsgcNdiNjevlmHM1uhLPJzTA2ZgfmgqxDFJaQraAcUN_ksd-8SDtUA73-5G02_uBJNTdeeqLZCpjWk2I6bgYuMg5I-X9-P-CGRFDPlCteHAMilOwzGUXRhT-RMHotwZTRr8HETs4WnedAMLzLnNfCmVzgq4yb8HtA9roVPGz-WdgpycdVilcBhIf6IsK8aT4YtKS_OkAxEEYq8l6fsyOJyNq7oW0y-rSqunnanDp5gW8FWVgZSWNjBhmUIJGLd_Vwm9nOVyhqIj45eljogSW6ISJdq3Fh8nhrUxC5vOwZu1q9cJnQe5Q&h=pfL3iCoJPiFTO8f86ZMFUf11u164Sn2FdiaiKNDabdE - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 132A334127FF4B079E44620C28B19005 Ref B: TYO201151002031 Ref C: 2025-03-31T07:44:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_vOUmDZbiu7LdOBfnkDAPhutGwyuZh0Zf","name":"vm_deploy_vOUmDZbiu7LdOBfnkDAPhutGwyuZh0Zf","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11920607718308922673","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-31T07:43:39.7042296Z","correlationId":"4f8a7f91-4dfd-4bf7-bdbf-4e644cb291b3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/7237bcb3-d2ef-412e-94d3-0e780a28adcd","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"7237bcb3-d2ef-412e-94d3-0e780a28adcd"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/7237bcb3-d2ef-412e-94d3-0e780a28adcd"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '3698' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 930CEDB7D81E4A18BE0F93DF4EBDFBA6 Ref B: TYO201151002031 Ref C: 2025-03-31T07:44:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.12.0.2\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2025-03-31T07:43:32+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:42:50.9302313+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:43:25.7592841+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '4334' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23988,Microsoft.Compute/LowCostGetResource;32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B5298E545BBA4F14BC60DB29A257A258 Ref B: TYO201151005054 Ref C: 2025-03-31T07:44:12Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01 - response: - body: - string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"339bdb38-f54d-4d8f-9741-271c3ecf8bb5\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a92bb12b-4323-41a7-a6ec-d3ed03c65c04","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"339bdb38-f54d-4d8f-9741-271c3ecf8bb5\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"lc5q2r3td4nejol1g5rmovidwd.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-05-71-A8","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' - headers: - cache-control: - - no-cache - content-length: - - '1927' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:13 GMT - etag: - - W/"339bdb38-f54d-4d8f-9741-271c3ecf8bb5" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 52354b14-aca6-4c5c-83e6-8ecca691c3fa - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2B44E4DB42F34CF09A6129A7EC8549B2 Ref B: TYO201151003040 Ref C: 2025-03-31T07:44:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username - --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01 - response: - body: - string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"7d74696e-f195-43c7-b95a-0c28013a4255\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ddce7dd2-7786-4e2b-83ef-2798ce532b07","ipAddress":"20.66.17.130","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' - headers: - cache-control: - - no-cache - content-length: - - '770' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:14 GMT - etag: - - W/"7d74696e-f195-43c7-b95a-0c28013a4255" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 0e021eff-cb3d-44e1-b21b-cd963f3ed21a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FC5C41C0B8CB42049180BB400C67FC2F Ref B: TYO201100116025 Ref C: 2025-03-31T07:44:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"1\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3040' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:14 GMT - etag: - - '"1"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23980,Microsoft.Compute/LowCostGetResource;30 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 043A4FCB578A408F91084B0F0F93E0E0 Ref B: TYO201151001031 Ref C: 2025-03-31T07:44:15Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"1\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3040' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:15 GMT - etag: - - '"1"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23978,Microsoft.Compute/LowCostGetResource;29 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 1C4EB95B0A2143FEA6D8363B9EFE5D05 Ref B: TYO201151004052 Ref C: 2025-03-31T07:44:15Z' - status: - code: 200 - message: '' -- request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2": - {}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - Content-Length: - - '236' - Content-Type: - - application/json - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n },\r\n - \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {}\r\n }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": - \"Updating\",\r\n \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": - \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202401161\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"2\\\"\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da886129-af28-4e1a-86d8-14688dc3e9e5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790038591624124&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=nQYGpfJYK1cgR2jd9UAdEKWueahHpUdWhXwEtEtwOC1A8oFItudtF_cTGjEJ-hokjp1yeBIXd3580wJ0WwWZnGP-XrqF6OiS_kcs64f3HvMMG7VVx59Dzrm7HzFWu6S4YNpdKdn8Xz8Y5aVOKJodbHulipKHLy5Xzdotp4gqA_iuyj3dvNg_NGojF4Dsx62adxmfmXk-gqksp0d7M1hE73lxdvGsIkSmFTKgxZ4CddbYjsGyUNiCocZyVa8GEQBuHt9GLbrqA78vzqFHEBMV82jpEQf_e11U5tLBYjK2Q0vYxjjtIZ8Y-PvW5xfIJRPPCKThwtu0sZT5C3tBnoxzJQ&h=NuNNYhCFYNGK-skmdCSghKw_PuHKXyfFRg_uzZPpOds - cache-control: - - no-cache - content-length: - - '3200' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:19 GMT - etag: - - '"2"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/60fd0421-28dd-435d-bb43-b9bed7c26c76 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1497,Microsoft.Compute/UpdateVMResource;11 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 62B0296D2C3F40EB8AE790A437A7901F Ref B: TYO201151002029 Ref C: 2025-03-31T07:44:16Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da886129-af28-4e1a-86d8-14688dc3e9e5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790038591624124&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=nQYGpfJYK1cgR2jd9UAdEKWueahHpUdWhXwEtEtwOC1A8oFItudtF_cTGjEJ-hokjp1yeBIXd3580wJ0WwWZnGP-XrqF6OiS_kcs64f3HvMMG7VVx59Dzrm7HzFWu6S4YNpdKdn8Xz8Y5aVOKJodbHulipKHLy5Xzdotp4gqA_iuyj3dvNg_NGojF4Dsx62adxmfmXk-gqksp0d7M1hE73lxdvGsIkSmFTKgxZ4CddbYjsGyUNiCocZyVa8GEQBuHt9GLbrqA78vzqFHEBMV82jpEQf_e11U5tLBYjK2Q0vYxjjtIZ8Y-PvW5xfIJRPPCKThwtu0sZT5C3tBnoxzJQ&h=NuNNYhCFYNGK-skmdCSghKw_PuHKXyfFRg_uzZPpOds - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:44:18.7449444+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"da886129-af28-4e1a-86d8-14688dc3e9e5\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/4842627a-1a22-4797-8211-54142660db5f - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14986 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FBE508D45C194EEA86EDF96E2B53AC90 Ref B: TYO201151002029 Ref C: 2025-03-31T07:44:19Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da886129-af28-4e1a-86d8-14688dc3e9e5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790038591624124&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=nQYGpfJYK1cgR2jd9UAdEKWueahHpUdWhXwEtEtwOC1A8oFItudtF_cTGjEJ-hokjp1yeBIXd3580wJ0WwWZnGP-XrqF6OiS_kcs64f3HvMMG7VVx59Dzrm7HzFWu6S4YNpdKdn8Xz8Y5aVOKJodbHulipKHLy5Xzdotp4gqA_iuyj3dvNg_NGojF4Dsx62adxmfmXk-gqksp0d7M1hE73lxdvGsIkSmFTKgxZ4CddbYjsGyUNiCocZyVa8GEQBuHt9GLbrqA78vzqFHEBMV82jpEQf_e11U5tLBYjK2Q0vYxjjtIZ8Y-PvW5xfIJRPPCKThwtu0sZT5C3tBnoxzJQ&h=NuNNYhCFYNGK-skmdCSghKw_PuHKXyfFRg_uzZPpOds - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:44:18.7449444+00:00\",\r\n \"endTime\": - \"2025-03-31T07:44:24.9638054+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"da886129-af28-4e1a-86d8-14688dc3e9e5\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8f31b339-1c12-4e4c-ac1d-2ac69c6b9304 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 68AF406E0D8640419F5312BC043992EB Ref B: TYO201151002029 Ref C: 2025-03-31T07:44:49Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n },\r\n - \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3333' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:50 GMT - etag: - - '"2"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 05759B7D06E540D1B5E002A5D56A3019 Ref B: TYO201151002029 Ref C: 2025-03-31T07:44:49Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n },\r\n - \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3333' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:50 GMT - etag: - - '"2"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3FC2C3D3B6AE42EE96CF833E7F36EBFE Ref B: TYO201151004052 Ref C: 2025-03-31T07:44:50Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n },\r\n - \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3333' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:51 GMT - etag: - - '"2"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7BC1C06C4F094FD39E177B4C0AB61A49 Ref B: TYO201151001054 Ref C: 2025-03-31T07:44:51Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": - {\r\n \"principalId\": \"9a7b1988-7c7f-452b-a56b-426c29795f76\",\r\n - \ \"clientId\": \"e78d08d8-95cc-4709-80ad-6d6643703a0c\"\r\n },\r\n - \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3333' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:52 GMT - etag: - - '"2"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BC094D4655E04671AF14DBF4A700A4C9 Ref B: TYO201151001040 Ref C: 2025-03-31T07:44:52Z' - status: - code: 200 - message: '' -- request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.managedidentity/userassignedidentities/id1": - null}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - Content-Length: - - '238' - Content-Type: - - application/json - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9a224103-f3b6-4fe9-b264-c728496c9a29?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790038964533561&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=uVLi2eW-kWC1bUP2tWeUw4_sBkI3ydmOO_LpwpmN2QDUDMJZ3nmKEsDcknrDMPaXTTuZi4_DjU3nmp4U2jRFnG8KZ6mkXB74WOajMXUZtlhQojWlKhGfAwnWpOTYdygcRBbtZlGXmjkOr5dyXzlhEjvmyAYQUmyK8K32x9Vc9hZ-Hi31D-2sfYg5Ud0Ts8Gm9nsikNw2e_TPmwUBQm0T1rh-Wa4fVGnniFXmHbW8xkYT3jv5h7TwTBH_dVw5wmjt3b5xHWTam6KRyYbTGfjPiCVSS7zZFJP1SkGRyrlKnV4nXU_q66EmiOZI-dxsO2ypc8e27OOG2SFZN_gVEy7YpQ&h=nLMB0I3tNCWV6I4KQqcJLj-9whEbFgfLX-4mNC7KsLM - cache-control: - - no-cache - content-length: - - '3039' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:55 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/c81cf840-8a3f-4ee8-987d-632dca8026de - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;10 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 95755926A78E4597BCD5EEE18D6CDCBE Ref B: TYO201151002052 Ref C: 2025-03-31T07:44:53Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9a224103-f3b6-4fe9-b264-c728496c9a29?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790038964533561&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=uVLi2eW-kWC1bUP2tWeUw4_sBkI3ydmOO_LpwpmN2QDUDMJZ3nmKEsDcknrDMPaXTTuZi4_DjU3nmp4U2jRFnG8KZ6mkXB74WOajMXUZtlhQojWlKhGfAwnWpOTYdygcRBbtZlGXmjkOr5dyXzlhEjvmyAYQUmyK8K32x9Vc9hZ-Hi31D-2sfYg5Ud0Ts8Gm9nsikNw2e_TPmwUBQm0T1rh-Wa4fVGnniFXmHbW8xkYT3jv5h7TwTBH_dVw5wmjt3b5xHWTam6KRyYbTGfjPiCVSS7zZFJP1SkGRyrlKnV4nXU_q66EmiOZI-dxsO2ypc8e27OOG2SFZN_gVEy7YpQ&h=nLMB0I3tNCWV6I4KQqcJLj-9whEbFgfLX-4mNC7KsLM - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:44:56.151943+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9a224103-f3b6-4fe9-b264-c728496c9a29\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '133' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:44:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b28fb6ff-f5ca-4d76-ba55-123607bbdef6 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14992 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 18BE4D2155D94DD4A19197CD03A0D94C Ref B: TYO201151002052 Ref C: 2025-03-31T07:44:56Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9a224103-f3b6-4fe9-b264-c728496c9a29?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790038964533561&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=uVLi2eW-kWC1bUP2tWeUw4_sBkI3ydmOO_LpwpmN2QDUDMJZ3nmKEsDcknrDMPaXTTuZi4_DjU3nmp4U2jRFnG8KZ6mkXB74WOajMXUZtlhQojWlKhGfAwnWpOTYdygcRBbtZlGXmjkOr5dyXzlhEjvmyAYQUmyK8K32x9Vc9hZ-Hi31D-2sfYg5Ud0Ts8Gm9nsikNw2e_TPmwUBQm0T1rh-Wa4fVGnniFXmHbW8xkYT3jv5h7TwTBH_dVw5wmjt3b5xHWTam6KRyYbTGfjPiCVSS7zZFJP1SkGRyrlKnV4nXU_q66EmiOZI-dxsO2ypc8e27OOG2SFZN_gVEy7YpQ&h=nLMB0I3tNCWV6I4KQqcJLj-9whEbFgfLX-4mNC7KsLM - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:44:56.151943+00:00\",\r\n \"endTime\": - \"2025-03-31T07:45:00.4645379+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9a224103-f3b6-4fe9-b264-c728496c9a29\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '183' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:45:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/5c21bdbf-730a-4d47-a13d-facf048d723a - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14986 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BDDB145541F1486398003A2E85F577AB Ref B: TYO201151002052 Ref C: 2025-03-31T07:45:26Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3040' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:45:26 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;30 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 42E9CDD57D144F29ABB613440A836B8D Ref B: TYO201151002052 Ref C: 2025-03-31T07:45:27Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3040' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:45:27 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23989,Microsoft.Compute/LowCostGetResource;35 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0F3F183CEB0547F58000A19FD9BB6013 Ref B: TYO201151006052 Ref C: 2025-03-31T07:45:28Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": - {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2\": - {\r\n \"principalId\": \"4b3a089d-c7c6-4687-9afa-76b3842348f6\",\r\n - \ \"clientId\": \"0c0be429-250f-4828-8fae-b737d2e92996\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3040' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:45:29 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23988,Microsoft.Compute/LowCostGetResource;34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 35D0FA01DD964B099B5E7751D08652B4 Ref B: TYO201100113011 Ref C: 2025-03-31T07:45:29Z' - status: - code: 200 - message: '' -- request: - body: '{"identity": {"type": "SystemAssigned"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - Content-Length: - - '40' - Content-Type: - - application/json - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": - \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202401161\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"4\\\"\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d243fc4-3050-40da-9db6-05306df9dfd9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790039321373978&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=cA9iIctEEX28hrxoHpDL-dxVJPUCq3eq7IP9yrttqHj21tZpmu6K-taDaEd5UBo8OXedPOm49Cglm38nrNjwPIuHJwT1HDlT8aJJRwKrwExBvV8Q94N3vk1it92ucww8ZHbAS-E7phvCTicO8yBDnBauGFZZ0RtITB6c4lPaynz4tuMc5gk44VlVwCxFUKwi_hqFylgboD0NlU7B8VJO6axRGwTwuUssT0yTEcDEhu2q-H5KYI97mS1E474nPReaKE33HfWAwYusUvU9AaC8g-WYYUOdjXFwQO2EYj0JSSZWavP1OMLE31eF47SNLRJr6cBfrwmILspvOIMsfBpuvg&h=C9h-81Sb2w8Pr54dZrNyLlVJ8rHFjMdTDxoDWRDFiCc - cache-control: - - no-cache - content-length: - - '2692' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:45:31 GMT - etag: - - '"4"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/2c8bf2e0-9f0d-4439-b81d-ee6e95eb533b - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 52A7F51B888C4B80B4B0A61F9A7D7919 Ref B: TYO201151003040 Ref C: 2025-03-31T07:45:30Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d243fc4-3050-40da-9db6-05306df9dfd9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790039321373978&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=cA9iIctEEX28hrxoHpDL-dxVJPUCq3eq7IP9yrttqHj21tZpmu6K-taDaEd5UBo8OXedPOm49Cglm38nrNjwPIuHJwT1HDlT8aJJRwKrwExBvV8Q94N3vk1it92ucww8ZHbAS-E7phvCTicO8yBDnBauGFZZ0RtITB6c4lPaynz4tuMc5gk44VlVwCxFUKwi_hqFylgboD0NlU7B8VJO6axRGwTwuUssT0yTEcDEhu2q-H5KYI97mS1E474nPReaKE33HfWAwYusUvU9AaC8g-WYYUOdjXFwQO2EYj0JSSZWavP1OMLE31eF47SNLRJr6cBfrwmILspvOIMsfBpuvg&h=C9h-81Sb2w8Pr54dZrNyLlVJ8rHFjMdTDxoDWRDFiCc - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:45:31.7932441+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4d243fc4-3050-40da-9db6-05306df9dfd9\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:45:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/e559c890-1dac-4ea8-a8d6-3542a078f2e0 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14984 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F1116853F0EA4404B103D63046D829B5 Ref B: TYO201151003040 Ref C: 2025-03-31T07:45:32Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d243fc4-3050-40da-9db6-05306df9dfd9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790039321373978&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=cA9iIctEEX28hrxoHpDL-dxVJPUCq3eq7IP9yrttqHj21tZpmu6K-taDaEd5UBo8OXedPOm49Cglm38nrNjwPIuHJwT1HDlT8aJJRwKrwExBvV8Q94N3vk1it92ucww8ZHbAS-E7phvCTicO8yBDnBauGFZZ0RtITB6c4lPaynz4tuMc5gk44VlVwCxFUKwi_hqFylgboD0NlU7B8VJO6axRGwTwuUssT0yTEcDEhu2q-H5KYI97mS1E474nPReaKE33HfWAwYusUvU9AaC8g-WYYUOdjXFwQO2EYj0JSSZWavP1OMLE31eF47SNLRJr6cBfrwmILspvOIMsfBpuvg&h=C9h-81Sb2w8Pr54dZrNyLlVJ8rHFjMdTDxoDWRDFiCc - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:45:31.7932441+00:00\",\r\n \"endTime\": - \"2025-03-31T07:45:36.1370781+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"4d243fc4-3050-40da-9db6-05306df9dfd9\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/afcaf215-db35-41ca-80b9-32f7470cb4f9 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: A5A1C6CBCAFA435EBFD2B4D0C8BC95F4 Ref B: TYO201151003040 Ref C: 2025-03-31T07:46:02Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --identities - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": - \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202401161\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"4\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2693' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:02 GMT - etag: - - '"4"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' - x-msedge-ref: - - 'Ref A: 9E33E1FD977F45188C8AAD05F843A7DF Ref B: TYO201151003040 Ref C: 2025-03-31T07:46:03Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": - \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202401161\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"4\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2693' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:04 GMT - etag: - - '"4"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4F195833283B47ECAC1A3FFB8F9EF5D9 Ref B: TYO201151006042 Ref C: 2025-03-31T07:46:04Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"1d3b20d0-9516-421c-97bf-001a39cdef16\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": - \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202401161\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"4\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2693' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:04 GMT - etag: - - '"4"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990,Microsoft.Compute/LowCostGetResource;30 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 2BA8228F8F7447BFB9B445843BAE3851 Ref B: TYO201151005060 Ref C: 2025-03-31T07:46:04Z' - status: - code: 200 - message: '' -- request: - body: '{"identity": {"type": "None"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"5\\\"\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/02ea80f4-9a89-4809-aad5-627c8319e03f?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790039688086973&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=apeCnT6XbLefdnCvUpaE5KQbVrYmooWlv2uYQwdVwPRDgEBbeJ0Wldg-f6vhqJBq-riyelHR7LAquo01Z_qHlUG8BkBTVtGT7dtik9aHKRstnl2LNi7Vo7autqXHXptUJw9rI1M5CXS5K4jax73fGvp2ACt_rPNhPjXC1RywNrpyvFwuTTMRWjVy8oTc8aTmW8X1Adt4zY4Mvy9FQd0u7W6IKLbzq5WbwbTghEEpv0vsT7NXBQLTRZtTMn04SmlqBlMjNZFD2tYFhax9B-JzBCT1RuAOe7YfmpfvELBdLzRlX6ikXzJWBihWD2unGQQhImYtlAqyrr_31qGEWWUIPQ&h=NfasVXDNVmcesmMFSePkIZXkrJRoT5fRVN-LAyqMVas - cache-control: - - no-cache - content-length: - - '2522' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:08 GMT - etag: - - '"5"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/b87358ab-f2ad-47e8-9385-b7531c9c3dff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1497,Microsoft.Compute/UpdateVMResource;10 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: DB501FDA587F43DF8B7E6D02B015470C Ref B: TYO201151001034 Ref C: 2025-03-31T07:46:05Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/02ea80f4-9a89-4809-aad5-627c8319e03f?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790039688086973&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=apeCnT6XbLefdnCvUpaE5KQbVrYmooWlv2uYQwdVwPRDgEBbeJ0Wldg-f6vhqJBq-riyelHR7LAquo01Z_qHlUG8BkBTVtGT7dtik9aHKRstnl2LNi7Vo7autqXHXptUJw9rI1M5CXS5K4jax73fGvp2ACt_rPNhPjXC1RywNrpyvFwuTTMRWjVy8oTc8aTmW8X1Adt4zY4Mvy9FQd0u7W6IKLbzq5WbwbTghEEpv0vsT7NXBQLTRZtTMn04SmlqBlMjNZFD2tYFhax9B-JzBCT1RuAOe7YfmpfvELBdLzRlX6ikXzJWBihWD2unGQQhImYtlAqyrr_31qGEWWUIPQ&h=NfasVXDNVmcesmMFSePkIZXkrJRoT5fRVN-LAyqMVas - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:46:08.5126144+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"02ea80f4-9a89-4809-aad5-627c8319e03f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/fc571ab8-6132-45a1-bb07-9c11ebda7126 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14992 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EA487470B7B54A28ADBF1B7DCA465F90 Ref B: TYO201151001034 Ref C: 2025-03-31T07:46:09Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/02ea80f4-9a89-4809-aad5-627c8319e03f?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790039688086973&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=apeCnT6XbLefdnCvUpaE5KQbVrYmooWlv2uYQwdVwPRDgEBbeJ0Wldg-f6vhqJBq-riyelHR7LAquo01Z_qHlUG8BkBTVtGT7dtik9aHKRstnl2LNi7Vo7autqXHXptUJw9rI1M5CXS5K4jax73fGvp2ACt_rPNhPjXC1RywNrpyvFwuTTMRWjVy8oTc8aTmW8X1Adt4zY4Mvy9FQd0u7W6IKLbzq5WbwbTghEEpv0vsT7NXBQLTRZtTMn04SmlqBlMjNZFD2tYFhax9B-JzBCT1RuAOe7YfmpfvELBdLzRlX6ikXzJWBihWD2unGQQhImYtlAqyrr_31qGEWWUIPQ&h=NfasVXDNVmcesmMFSePkIZXkrJRoT5fRVN-LAyqMVas - response: - body: - string: "{\r\n \"startTime\": \"2025-03-31T07:46:08.5126144+00:00\",\r\n \"endTime\": - \"2025-03-31T07:46:12.9032982+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"02ea80f4-9a89-4809-aad5-627c8319e03f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/2109df9b-6219-4fa5-9fa0-e78b13e378ee - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B047D74E19DC42C5A4F44324D786D1A6 Ref B: TYO201151001034 Ref C: 2025-03-31T07:46:39Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"5\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2523' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:39 GMT - etag: - - '"5"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 111A27F00BEF4939885C99750C4404BC Ref B: TYO201151001034 Ref C: 2025-03-31T07:46:39Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"3cf287ba-a334-4ae0-a2ed-ee640c3cbe84\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n - \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_faf03935b4c844a7bf09b3401bd801ac\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:42:47.9613853+00:00\"\r\n },\r\n \"etag\": - \"\\\"5\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2523' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:46:40 GMT - etag: - - '"5"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 88C1C8B432814D1A8DDDA7137F4B9BE7 Ref B: TYO201100115017 Ref C: 2025-03-31T07:46:40Z' - status: - code: 200 - message: '' + code: 400 + message: Bad Request version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 240a89b558c..0ba98ba70d2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -6217,7 +6217,7 @@ def test_vm_explicit_msi(self, resource_group): emsi2_result = self.cmd('identity create -g {rg} -n {emsi2}').get_output_in_json() # create a vm with only user assigned identity - result = self.cmd('vm create -g {rg} -n vm2 --image Canonical:UbuntuServer:18.04-LTS:latest --assign-identity {emsi} ' + result = self.cmd('vm create -g {rg} -n vm2 --image Debian:debian-10:10:latest --assign-identity {emsi} ' '--generate-ssh-keys --admin-username {user} --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE', checks=[ self.check('identity.role', None), self.check('identity.scope', None), @@ -6232,7 +6232,7 @@ def test_vm_explicit_msi(self, resource_group): self.assertFalse(result['identity']['systemAssignedIdentity']) # create a vm with system + user assigned identities - result = self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --assign-identity {emsi} [system] --role reader --scope {scope} --generate-ssh-keys --admin-username {user} --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE').get_output_in_json() + result = self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --assign-identity {emsi} [system] --role reader --scope {scope} --generate-ssh-keys --admin-username {user} --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE').get_output_in_json() emsis = [x.lower() for x in result['identity']['userAssignedIdentities'].keys()] self.assertEqual(emsis, [emsi_result['id'].lower()]) result = self.cmd('vm identity show -g {rg} -n {vm}', checks=[ From 5a1e1b538c2af9c88ef5e0248f858cb3bc98348b Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 11:30:27 +0800 Subject: [PATCH 13/32] [style] - Update code styling --- src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py index 0fa6a1b1cd1..27207f5309a 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py @@ -839,4 +839,4 @@ class IdentityType(Enum): SYSTEM_ASSIGNED = 'SystemAssigned' USER_ASSIGNED = 'UserAssigned' SYSTEM_ASSIGNED_USER_ASSIGNED = 'SystemAssigned, UserAssigned' - NONE = 'None' \ No newline at end of file + NONE = 'None' From 84e89e318553e89513badd5a990006afbc3bb840 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 11:40:14 +0800 Subject: [PATCH 14/32] [style] - Update code styling --- .../azure/cli/command_modules/vm/_vm_utils.py | 8 +------- src/azure-cli/azure/cli/command_modules/vm/custom.py | 11 +++++++---- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py index 27207f5309a..a7513bf9ef0 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py @@ -35,7 +35,7 @@ def get_target_network_api(cli_ctx): if cli_ctx.cloud.profile == 'latest': version = '2022-01-01' else: - from azure.cli.core.profiles import get_api_version, ResourceType + from azure.cli.core.profiles import get_api_version version = get_api_version(cli_ctx, ResourceType.MGMT_NETWORK) return version @@ -49,8 +49,6 @@ def read_content_if_is_file(string_or_file): def _resolve_api_version(cli_ctx, provider_namespace, resource_type, parent_path): - from azure.cli.core.commands.client_factory import get_mgmt_service_client - from azure.cli.core.profiles import ResourceType client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES) provider = client.providers.get(provider_namespace) @@ -78,10 +76,8 @@ def log_pprint_template(template): def check_existence(cli_ctx, value, resource_group, provider_namespace, resource_type, parent_name=None, parent_type=None, static_version=None): # check for name or ID and set the type flags - from azure.cli.core.commands.client_factory import get_mgmt_service_client from azure.core.exceptions import HttpResponseError from azure.mgmt.core.tools import parse_resource_id - from azure.cli.core.profiles import ResourceType id_parts = parse_resource_id(value) resource_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES, subscription_id=id_parts.get('subscription', None)).resources @@ -417,8 +413,6 @@ def _update(model, lun, value): def get_storage_blob_uri(cli_ctx, storage): - from azure.cli.core.profiles._shared import ResourceType - from azure.cli.core.commands.client_factory import get_mgmt_service_client if urlparse(storage).scheme: storage_uri = storage else: diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 19efc1ffa43..bcbb290e7fb 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -23,7 +23,6 @@ from knack.log import get_logger from knack.util import CLIError from azure.cli.core.azclierror import ( - CLIInternalError, ResourceNotFoundError, ValidationError, RequiredArgumentMissingError, @@ -2592,7 +2591,8 @@ def _remove_identities_by_aaz(cmd, resource_group_name, name, identities, getter existing_identity['userAssignedIdentities'] = None if remove_system_assigned_identity: - if existing_identity['type'] == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value or existing_identity['type'] == IdentityType.USER_ASSIGNED.value: + if existing_identity['type'] == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value \ + or existing_identity['type'] == IdentityType.USER_ASSIGNED.value: existing_identity['type'] = IdentityType.USER_ASSIGNED.value else: existing_identity['type'] = IdentityType.NONE.value @@ -2610,12 +2610,15 @@ def setter(resource_group_name, vm_name, vm): from ._vm_utils import IdentityType if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: - command_args['mi_user_assigned'] = [key for key in (vm.get('identity').get('userAssignedIdentities') or {}).keys()] + ['UserAssigned'] + command_args['mi_user_assigned'] = \ + ([key for key in list((vm.get('identity', {}).get('userAssignedIdentities', {})).keys())] + + ['UserAssigned']) elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED.value: command_args['mi_user_assigned'] = [] command_args['mi_system_assigned'] = 'True' elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: - command_args['mi_user_assigned'] = [key for key in (vm.get('identity').get('userAssignedIdentities') or {}).keys()] + command_args['mi_user_assigned'] = \ + [key for key in list((vm.get('identity', {}).get('userAssignedIdentities', {})).keys())] command_args['mi_system_assigned'] = 'True' else: command_args['mi_user_assigned'] = [] From 5ee563701039449c5ef4644ed93603ff81d849bd Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 11:50:56 +0800 Subject: [PATCH 15/32] [style] - Update code styling --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index bcbb290e7fb..292c123f26d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2611,14 +2611,14 @@ def setter(resource_group_name, vm_name, vm): from ._vm_utils import IdentityType if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: command_args['mi_user_assigned'] = \ - ([key for key in list((vm.get('identity', {}).get('userAssignedIdentities', {})).keys())] + + ([key for key in list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys())] + ['UserAssigned']) elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED.value: command_args['mi_user_assigned'] = [] command_args['mi_system_assigned'] = 'True' elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: command_args['mi_user_assigned'] = \ - [key for key in list((vm.get('identity', {}).get('userAssignedIdentities', {})).keys())] + [key for key in list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys())] command_args['mi_system_assigned'] = 'True' else: command_args['mi_user_assigned'] = [] From 70d874588c4b3af72c4161879e43a431923f8cb7 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 11:56:40 +0800 Subject: [PATCH 16/32] [test] - Added handling to vm create and vmss create command --- .../vm/tests/latest/test_vm_commands.py | 60 +++++++++++++------ 1 file changed, 42 insertions(+), 18 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 0ba98ba70d2..274a1c0474a 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -6056,17 +6056,23 @@ def test_vm_msi(self, resource_group): }) with self.assertRaisesRegex(ArgumentUsageError, "please specify both --role and --scope"): - self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest --assign-identity --admin-username admin123 ' - '--admin-password PasswordPassword1! --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE --scope {scope}') + self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest ' + '--assign-identity --admin-username admin123 --admin-password PasswordPassword1! ' + '--subnet {subnet} --vnet-name {vnet} --nsg-rule NONE --scope {scope} ' + '--size Standard_B2ms') with self.assertRaisesRegex(ArgumentUsageError, "please specify both --role and --scope"): - self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest --assign-identity --admin-username admin123 ' - '--admin-password PasswordPassword1! --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE --role Contributor') + self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest ' + '--assign-identity --admin-username admin123 --admin-password PasswordPassword1! ' + '--subnet {subnet} --vnet-name {vnet} --nsg-rule NONE --role Contributor ' + '--size Standard_B2ms') with mock.patch('azure.cli.core.commands.arm._gen_guid', side_effect=self.create_guid): # create a linux vm with default configuration - self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest --assign-identity --admin-username admin123 ' - '--admin-password PasswordPassword1! --scope {scope} --role Contributor --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE', checks=[ + self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest ' + '--assign-identity --admin-username admin123 --admin-password PasswordPassword1! ' + '--scope {scope} --role Contributor --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE ' + '--size Standard_B2ms', checks=[ self.check('identity.role', 'Contributor'), self.check('identity.scope', '/subscriptions/{sub}/resourceGroups/{rg}'), ]) @@ -6076,16 +6082,21 @@ def test_vm_msi(self, resource_group): 'network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet} --default-outbound-access false') # create a windows vm with reader role on the linux vm - result = self.cmd('vm create -g {rg} -n {vm2} --image Win2022Datacenter --assign-identity --scope {vm1_id} --role reader ' - '--admin-username admin123 --admin-password PasswordPassword1! --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE', checks=[ + result = self.cmd('vm create -g {rg} -n {vm2} --image Win2022Datacenter ' + '--assign-identity --scope {vm1_id} --role reader ' + '--admin-username admin123 --admin-password PasswordPassword1! ' + '--subnet {subnet} --vnet-name {vnet} --nsg-rule NONE ' + '--size Standard_B2ms', checks=[ self.check('identity.role', 'reader'), self.check('identity.scope', '{vm1_id}'), ]) uuid.UUID(result.get_output_in_json()['identity']['systemAssignedIdentity']) # create a linux vm w/o identity and later enable it - vm3_result = self.cmd('vm create -g {rg} -n {vm3} --image Debian:debian-10:10:latest --admin-username admin123 ' - '--admin-password PasswordPassword1! --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE').get_output_in_json() + vm3_result = self.cmd('vm create -g {rg} -n {vm3} --image Debian:debian-10:10:latest ' + '--admin-username admin123 --admin-password PasswordPassword1! ' + '--subnet {subnet} --vnet-name {vnet} --nsg-rule NONE ' + '--size Standard_B2ms').get_output_in_json() self.assertIsNone(vm3_result.get('identity')) with self.assertRaisesRegex(ArgumentUsageError, "please specify both --role and --scope when assigning a role to the managed identity"): @@ -6168,8 +6179,10 @@ def test_vm_msi_no_scope(self, resource_group): }) # create a linux vm with identity but w/o a role assignment (--scope "") - self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest --assign-identity --admin-username admin123 ' - '--admin-password PasswordPassword1! --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE', checks=[ + self.cmd('vm create -g {rg} -n {vm1} --image Debian:debian-10:10:latest ' + '--assign-identity --admin-username admin123 --admin-password PasswordPassword1! ' + '--subnet {subnet} --vnet-name {vnet} --nsg-rule NONE ' + '--size Standard_B2ms', checks=[ self.check('identity.scope', None), self.check('identity.role', None), ]) @@ -6179,18 +6192,24 @@ def test_vm_msi_no_scope(self, resource_group): 'network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet} --default-outbound-access false') # create a vmss with identity but w/o a role assignment (--scope "") - self.cmd('vmss create -g {rg} -n {vmss1} --image Debian:debian-10:10:latest --assign-identity --admin-username admin123 --admin-password PasswordPassword1! --orchestration-mode Uniform --lb-sku Standard', checks=[ + self.cmd('vmss create -g {rg} -n {vmss1} --image Debian:debian-10:10:latest ' + '--assign-identity --admin-username admin123 --admin-password PasswordPassword1! ' + '--orchestration-mode Uniform --lb-sku Standard --vm-sku Standard_B1ls', checks=[ self.check('vmss.identity.scope', None), ]) # create a vm w/o identity - self.cmd('vm create -g {rg} -n {vm2} --image Debian:debian-10:10:latest --admin-username admin123 --admin-password PasswordPassword1! --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE') + self.cmd('vm create -g {rg} -n {vm2} --image Debian:debian-10:10:latest ' + '--admin-username admin123 --admin-password PasswordPassword1! ' + '--subnet {subnet} --vnet-name {vnet} --nsg-rule NONE --size Standard_B2ms') # assign identity but w/o a role assignment self.cmd('vm identity assign -g {rg} -n {vm2}', checks=[ self.check('scope', None), ]) - self.cmd('vmss create -g {rg} -n {vmss2} --image Debian:debian-10:10:latest --admin-username admin123 --admin-password PasswordPassword1! --orchestration-mode Uniform --lb-sku Standard') + self.cmd('vmss create -g {rg} -n {vmss2} --image Debian:debian-10:10:latest ' + '--admin-username admin123 --admin-password PasswordPassword1! ' + '--orchestration-mode Uniform --lb-sku Standard --vm-sku Standard_B1ls') self.cmd('vmss identity assign -g {rg} -n {vmss2}', checks=[ self.check('scope', None), ]) @@ -6217,8 +6236,10 @@ def test_vm_explicit_msi(self, resource_group): emsi2_result = self.cmd('identity create -g {rg} -n {emsi2}').get_output_in_json() # create a vm with only user assigned identity - result = self.cmd('vm create -g {rg} -n vm2 --image Debian:debian-10:10:latest --assign-identity {emsi} ' - '--generate-ssh-keys --admin-username {user} --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE', checks=[ + result = self.cmd('vm create -g {rg} -n vm2 --image Debian:debian-10:10:latest ' + '--assign-identity {emsi} --generate-ssh-keys --admin-username {user} ' + '--subnet {subnet} --vnet-name {vnet} --nsg-rule NONE ' + '--size Standard_B2ms', checks=[ self.check('identity.role', None), self.check('identity.scope', None), ]).get_output_in_json() @@ -6232,7 +6253,10 @@ def test_vm_explicit_msi(self, resource_group): self.assertFalse(result['identity']['systemAssignedIdentity']) # create a vm with system + user assigned identities - result = self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --assign-identity {emsi} [system] --role reader --scope {scope} --generate-ssh-keys --admin-username {user} --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE').get_output_in_json() + result = self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest ' + '--assign-identity {emsi} [system] --role reader --scope {scope} --generate-ssh-keys ' + '--admin-username {user} --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE ' + '--size Standard_B2ms').get_output_in_json() emsis = [x.lower() for x in result['identity']['userAssignedIdentities'].keys()] self.assertEqual(emsis, [emsi_result['id'].lower()]) result = self.cmd('vm identity show -g {rg} -n {vm}', checks=[ From 6167ec008e4d53b24a91c4f117b8c13814c2f4db Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 12:45:01 +0800 Subject: [PATCH 17/32] [Refractor] - Resolve copilot suggestion --- src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py | 3 ++- src/azure-cli/azure/cli/command_modules/vm/custom.py | 9 +++++---- .../azure/cli/command_modules/vm/operations/vm.py | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py index a7513bf9ef0..2284cac4b58 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py @@ -771,7 +771,8 @@ def assign_identity(cli_ctx, getter, setter, identity_role=None, identity_scope= # create role assignment: if identity_scope: - principal_id = resource.get('identity', {}).get('principal_id') + principal_id = resource.get('identity', {}).get('principalId') or \ + resource.get('identity', {}).get('principal_id') identity_role_id = resolve_role_id(cli_ctx, identity_role, identity_scope) assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 292c123f26d..ad9ebd0404e 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2611,14 +2611,15 @@ def setter(resource_group_name, vm_name, vm): from ._vm_utils import IdentityType if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: command_args['mi_user_assigned'] = \ - ([key for key in list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys())] + - ['UserAssigned']) + vm.get('identity', {}).get('userAssignedIdentities', {}).keys() + ['UserAssigned'] + # NOTE: The literal 'UserAssigned' is intentionally appended as a marker for + # VMIdentityRemove._format_content, which uses it to apply special handling + # for purely user-assigned identities. It is not a real identity resource ID. elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED.value: command_args['mi_user_assigned'] = [] command_args['mi_system_assigned'] = 'True' elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: - command_args['mi_user_assigned'] = \ - [key for key in list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys())] + command_args['mi_user_assigned'] = vm.get('identity', {}).get('userAssignedIdentities', {}).keys() command_args['mi_system_assigned'] = 'True' else: command_args['mi_user_assigned'] = [] diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py index 97035578302..23876496677 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py +++ b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py @@ -197,7 +197,7 @@ def _format_content(self, content): for key in list(identities.keys()): identities[key] = None - if len(content.get('identity', {}).get('userAssignedIdentities', {}).keys()) < 1: + if not content.get('identity', {}).get('userAssignedIdentities', {}): content['identity']['userAssignedIdentities'] = None return json.dumps(content) From e97b9e1af872cda5f2cbd473de57bf1a52c52ed3 Mon Sep 17 00:00:00 2001 From: Qinkai Wu Date: Tue, 23 Dec 2025 16:04:31 +1100 Subject: [PATCH 18/32] Add recording for test_vm_msi --- .../tests/latest/recordings/test_vm_msi.yaml | 10286 ++++++++-------- 1 file changed, 5191 insertions(+), 5095 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml index 25d465c6c98..afa96195d49 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml @@ -12,14 +12,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --scope + --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-03-31T07:48:34Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:37 GMT + - Tue, 23 Dec 2025 04:57:49 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F39BC58C7FFA4833885E9B9C918DA288 Ref B: TYO201151006040 Ref C: 2025-03-31T07:48:38Z' + - 'Ref A: 842C3FF9806D46F6900F719D6AC83E27 Ref B: SYD03EDGE1020 Ref C: 2025-12-23T04:57:49Z' status: code: 200 message: OK @@ -59,15 +59,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --scope + --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -77,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:39 GMT + - Tue, 23 Dec 2025 04:57:49 GMT expires: - '-1' pragma: @@ -89,13 +89,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/e604f25d-dffd-4494-a86a-b56b457bf66a + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/79ee656e-8fbb-4a7e-b94f-1bc6eccc05e4 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43926 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CB48721A4FE548629B5BA3CBD82D2540 Ref B: TYO201100115045 Ref C: 2025-03-31T07:48:39Z' + - 'Ref A: 10E50034381D455C91AF7539D9BE9EF4 Ref B: SYD03EDGE1319 Ref C: 2025-12-23T04:57:49Z' status: code: 200 message: OK @@ -112,34 +112,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --scope + --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:39 GMT + - Tue, 23 Dec 2025 04:57:50 GMT expires: - '-1' pragma: @@ -151,13 +154,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/1c519fe7-ab3e-4321-96d3-45ceaae97db2 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/65bdf19d-0529-44a5-a75a-0d0798648999 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73939 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C1E41475A6D44BDCA3FB87376F304A69 Ref B: TYO201151005029 Ref C: 2025-03-31T07:48:40Z' + - 'Ref A: 83B649B107A0411DB09AA3E99FAF890C Ref B: SYD03EDGE1017 Ref C: 2025-12-23T04:57:50Z' status: code: 200 message: OK @@ -174,9 +177,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --scope + --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -190,8 +193,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -200,8 +204,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -210,8 +215,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -220,8 +226,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -230,8 +237,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -239,8 +247,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -248,8 +257,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -257,8 +267,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -266,8 +277,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -276,8 +288,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -286,8 +299,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -296,8 +310,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -305,31 +320,54 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -337,10 +375,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -348,10 +386,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -359,44 +397,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -404,70 +437,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -475,20 +508,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -496,9 +529,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -506,10 +539,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -517,10 +549,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -528,10 +559,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -539,10 +569,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -550,20 +580,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -571,10 +601,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -582,48 +612,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -631,20 +662,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -652,28 +683,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-11-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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -681,113 +712,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -796,8 +810,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -807,107 +821,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -915,38 +934,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -954,33 +974,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -988,43 +1004,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1032,16 +1044,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1049,10 +1055,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -1060,16 +1066,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -1077,20 +1077,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -1098,16 +1097,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1115,10 +1107,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1126,10 +1118,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -1137,10 +1129,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -1148,10 +1140,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1159,10 +1151,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1170,33 +1162,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1204,10 +1192,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1215,10 +1214,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1226,10 +1236,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -1237,261 +1247,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1499,16 +1509,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1516,20 +1520,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -1537,10 +1541,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1548,20 +1551,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1569,106 +1572,123 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217725' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:43 GMT + - Tue, 23 Dec 2025 04:57:51 GMT expires: - '-1' pragma: @@ -1680,9 +1700,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: C5ADDCE1408C4846A833B56E1B95FC50 Ref B: TYO201151005031 Ref C: 2025-03-31T07:48:41Z' + - 'Ref A: B106881D576D48888DE192B88214E8E2 Ref B: SYD03EDGE1418 Ref C: 2025-12-23T04:57:50Z' status: code: 200 message: OK @@ -1699,9 +1719,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --scope + --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -1717,7 +1737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:44 GMT + - Tue, 23 Dec 2025 04:57:53 GMT expires: - '-1' pragma: @@ -1731,7 +1751,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 499562522E444F55927495582C67197F Ref B: TYO201151002062 Ref C: 2025-03-31T07:48:45Z' + - 'Ref A: 3F85AF31480F4AFEBD0521468F898830 Ref B: SYD03EDGE1715 Ref C: 2025-12-23T04:57:52Z' status: code: 404 message: Not Found @@ -1748,23 +1768,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --role + --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-03-31T07:48:34Z","module":"vm","DateCreated":"2025-03-31T07:48:39Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '355' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:45 GMT + - Tue, 23 Dec 2025 04:57:53 GMT expires: - '-1' pragma: @@ -1776,9 +1796,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: EB45113152A645ACB90B1B700752FF96 Ref B: TYO201100117045 Ref C: 2025-03-31T07:48:45Z' + - 'Ref A: 22C3055D1AF34DFAA9B004F6D4EAA8AC Ref B: SYD03EDGE1421 Ref C: 2025-12-23T04:57:53Z' status: code: 200 message: OK @@ -1795,15 +1815,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --role + --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -1813,7 +1833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:46 GMT + - Tue, 23 Dec 2025 04:57:54 GMT expires: - '-1' pragma: @@ -1825,13 +1845,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/c4e3f04c-16b6-4f05-8f9a-ecba6887e6e9 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/eb61395c-8fc8-44e0-bf96-87dc992c323a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43925 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995 x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: BB786DBE8BD3489FB3CE7549C9E150EF Ref B: TYO201151005042 Ref C: 2025-03-31T07:48:46Z' + - 'Ref A: 5490A60FB76F48D2B2B924D44FD63574 Ref B: SYD03EDGE2014 Ref C: 2025-12-23T04:57:54Z' status: code: 200 message: OK @@ -1848,34 +1868,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --role + --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:46 GMT + - Tue, 23 Dec 2025 04:57:55 GMT expires: - '-1' pragma: @@ -1887,13 +1910,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/01a2fa26-6d37-458b-ba9b-e994013545d9 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/f89effa8-ca10-473e-b3d3-3d72d35c6e88 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73938 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8FE3BC4B803E4281BF2F9B16705E74EE Ref B: TYO201100114021 Ref C: 2025-03-31T07:48:46Z' + - 'Ref A: 6D59507FAD9D423AB63ED905DDC10F95 Ref B: SYD03EDGE1314 Ref C: 2025-12-23T04:57:55Z' status: code: 200 message: OK @@ -1910,9 +1933,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --role + --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -1926,8 +1949,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1936,8 +1960,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1946,8 +1971,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1956,8 +1982,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1966,8 +1993,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -1975,8 +2003,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -1984,8 +2013,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -1993,8 +2023,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -2002,8 +2033,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -2012,8 +2044,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -2022,8 +2055,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -2032,8 +2066,20 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -2041,31 +2087,43 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2073,10 +2131,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2084,10 +2142,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2095,44 +2153,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2140,70 +2193,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2211,20 +2264,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2232,9 +2285,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -2242,10 +2295,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2253,10 +2305,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2264,10 +2315,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2275,10 +2325,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2286,20 +2336,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2307,10 +2357,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2318,48 +2368,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2367,20 +2418,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -2388,28 +2439,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-11-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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2417,113 +2468,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -2532,8 +2566,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -2543,107 +2577,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -2651,38 +2690,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2690,33 +2730,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2724,43 +2760,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2768,16 +2800,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2785,10 +2811,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -2796,16 +2822,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -2813,20 +2833,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -2834,16 +2853,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2851,10 +2863,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2862,10 +2874,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2873,10 +2885,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -2884,10 +2896,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2895,10 +2907,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2906,33 +2918,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2940,10 +2948,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2951,10 +2970,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2962,10 +2992,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2973,261 +3003,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3235,16 +3265,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3252,20 +3276,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -3273,10 +3297,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3284,20 +3307,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3305,106 +3328,123 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217725' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:48 GMT + - Tue, 23 Dec 2025 04:57:56 GMT expires: - '-1' pragma: @@ -3418,7 +3458,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7375AC717B4A41D3B55E9865AC5DE292 Ref B: TYO201100113029 Ref C: 2025-03-31T07:48:47Z' + - 'Ref A: 13907A7648DC408A8DD16F5FF07C107F Ref B: SYD03EDGE2116 Ref C: 2025-12-23T04:57:55Z' status: code: 200 message: OK @@ -3435,9 +3475,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule --role + --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -3453,7 +3493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:49 GMT + - Tue, 23 Dec 2025 04:57:58 GMT expires: - '-1' pragma: @@ -3467,7 +3507,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 6B009D3107F945A5AD2D5B524DA62A01 Ref B: TYO201100115021 Ref C: 2025-03-31T07:48:49Z' + - 'Ref A: E92EA305ED8F464AA42A5C3788D51C00 Ref B: SYD03EDGE1910 Ref C: 2025-12-23T04:57:57Z' status: code: 404 message: Not Found @@ -3484,23 +3524,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-03-31T07:48:34Z","module":"vm","DateCreated":"2025-03-31T07:48:39Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '355' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:50 GMT + - Tue, 23 Dec 2025 04:57:58 GMT expires: - '-1' pragma: @@ -3514,7 +3554,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6625080FDD2F424FA285D770870E224C Ref B: TYO201100116019 Ref C: 2025-03-31T07:48:50Z' + - 'Ref A: 1BE2B33C9E2A43FC95C857A40EE0E1C2 Ref B: SYD03EDGE1917 Ref C: 2025-12-23T04:57:58Z' status: code: 200 message: OK @@ -3531,15 +3571,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -3549,7 +3589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:51 GMT + - Tue, 23 Dec 2025 04:57:59 GMT expires: - '-1' pragma: @@ -3561,13 +3601,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0ad4180e-5392-4aee-9bda-02bf5ba64ab7 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/b97d1d5b-df26-4101-b4e8-1718775e6abf x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43924 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0126B7C03243434BA97FB48E72F2A5F3 Ref B: TYO201151002025 Ref C: 2025-03-31T07:48:51Z' + - 'Ref A: C63CCC444C054940969510F0A030315E Ref B: SYD03EDGE1314 Ref C: 2025-12-23T04:57:58Z' status: code: 200 message: OK @@ -3584,34 +3624,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:51 GMT + - Tue, 23 Dec 2025 04:57:59 GMT expires: - '-1' pragma: @@ -3623,13 +3666,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/850c1c3f-36fe-452b-8c92-640f8cb0932c + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/debba7ce-c6f6-431a-9813-a871949c506b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73937 + - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F2697E27AA7B467880614A08E82350CC Ref B: TYO201151002054 Ref C: 2025-03-31T07:48:52Z' + - 'Ref A: EE368CBB620D46129C17BD5E410CB724 Ref B: SYD03EDGE1410 Ref C: 2025-12-23T04:57:59Z' status: code: 200 message: OK @@ -3646,9 +3689,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -3662,8 +3705,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -3672,8 +3716,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -3682,8 +3727,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -3692,8 +3738,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -3702,8 +3749,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -3711,8 +3759,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -3720,8 +3769,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -3729,8 +3779,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -3738,8 +3789,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -3748,8 +3800,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -3758,8 +3811,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -3768,8 +3822,20 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -3777,31 +3843,43 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3809,10 +3887,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3820,10 +3898,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3831,44 +3909,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3876,70 +3949,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -3947,20 +4020,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -3968,9 +4041,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -3978,10 +4051,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -3989,10 +4061,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -4000,10 +4071,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -4011,10 +4081,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4022,20 +4092,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4043,10 +4113,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -4054,48 +4124,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4103,20 +4174,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -4124,28 +4195,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-11-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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4153,113 +4224,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -4268,8 +4322,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -4279,107 +4333,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -4387,38 +4446,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4426,33 +4486,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4460,43 +4516,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4504,16 +4556,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -4521,10 +4567,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -4532,16 +4578,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -4549,20 +4589,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -4570,16 +4609,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -4587,10 +4619,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -4598,10 +4630,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -4609,10 +4641,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -4620,10 +4652,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -4631,10 +4663,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -4642,33 +4674,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4676,10 +4704,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4687,10 +4726,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -4698,10 +4748,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -4709,261 +4759,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -4971,16 +5021,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -4988,20 +5032,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -5009,10 +5053,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5020,127 +5063,144 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217725' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:53 GMT + - Tue, 23 Dec 2025 04:58:02 GMT expires: - '-1' pragma: @@ -5154,7 +5214,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DBA82F229F1C46C5BF1D3504B8934CA7 Ref B: TYO201151006052 Ref C: 2025-03-31T07:48:53Z' + - 'Ref A: 1EBEFB889D73438FBB11332FE5E672D8 Ref B: SYD03EDGE0708 Ref C: 2025-12-23T04:58:00Z' status: code: 200 message: OK @@ -5171,9 +5231,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -5189,7 +5249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:53 GMT + - Tue, 23 Dec 2025 04:58:03 GMT expires: - '-1' pragma: @@ -5203,7 +5263,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 3B04F1A6088E466FA694F735E61F6510 Ref B: TYO201151001062 Ref C: 2025-03-31T07:48:54Z' + - 'Ref A: 7F7876770A2B4255B5482F4C81BF7D3B Ref B: SYD03EDGE2019 Ref C: 2025-12-23T04:58:03Z' status: code: 404 message: Not Found @@ -5220,9 +5280,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-05-01-preview response: @@ -5238,7 +5298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:54 GMT + - Tue, 23 Dec 2025 04:58:03 GMT expires: - '-1' pragma: @@ -5250,11 +5310,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/fa0c7e6c-cff2-4026-9809-b3aeada0431c + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/a80c9760-c6a2-4631-b445-b2f108a8b6d1 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 53EEC688189F4E509DD2185BF24ED738 Ref B: TYO201100116021 Ref C: 2025-03-31T07:48:54Z' + - 'Ref A: A8C75A25EF5E4495B72CFE5CF721236B Ref B: SYD03EDGE1907 Ref C: 2025-12-23T04:58:03Z' status: code: 200 message: OK @@ -5271,15 +5331,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -5289,7 +5349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:54 GMT + - Tue, 23 Dec 2025 04:58:04 GMT expires: - '-1' pragma: @@ -5301,13 +5361,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/97421777-c86e-41fb-8668-ce377337bc7b + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiacentral/0131d4ce-5249-4e46-8660-fe79749b84f8 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43923 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A1B92F7E2E5F4D6AB8D5B8BFDEBD0C20 Ref B: TYO201100117051 Ref C: 2025-03-31T07:48:55Z' + - 'Ref A: 62524FAA4CED4403B48288C7D630FFAA Ref B: SYD03EDGE1716 Ref C: 2025-12-23T04:58:03Z' status: code: 200 message: OK @@ -5324,34 +5384,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:55 GMT + - Tue, 23 Dec 2025 04:58:05 GMT expires: - '-1' pragma: @@ -5363,13 +5426,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/2082b319-3c18-4bca-a878-a4195cbc140e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/e9613616-0733-43d4-9b92-a89798e46971 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73936 + - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 83B8997F404749B9BCF1CF61401CF013 Ref B: TYO201151002054 Ref C: 2025-03-31T07:48:56Z' + - 'Ref A: 6A5E0E2C3DDF436FA907155EB626E7FE Ref B: SYD03EDGE1409 Ref C: 2025-12-23T04:58:04Z' status: code: 200 message: OK @@ -5386,15 +5449,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -5404,7 +5467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:55 GMT + - Tue, 23 Dec 2025 04:58:06 GMT expires: - '-1' pragma: @@ -5416,13 +5479,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b2ae70f3-1c55-447d-a78a-bc26f266f654 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/1ada0217-0d80-4529-bbf6-ae9296e0e45c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43922 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 14502D193F254E8D9C52FB892E42B6D2 Ref B: TYO201100114033 Ref C: 2025-03-31T07:48:56Z' + - 'Ref A: ABD8EBD9167E42D89E4C309FD881673A Ref B: SYD03EDGE0811 Ref C: 2025-12-23T04:58:05Z' status: code: 200 message: OK @@ -5439,34 +5502,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:56 GMT + - Tue, 23 Dec 2025 04:58:07 GMT expires: - '-1' pragma: @@ -5478,13 +5544,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/be95d26d-c582-4c67-9188-8d45b8a592b6 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/75338ecf-603a-42e6-9718-69b7d63c061d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73935 + - Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 09A606EEE0B14380BBB76B0CC19A1F94 Ref B: TYO201100114023 Ref C: 2025-03-31T07:48:57Z' + - 'Ref A: ADEB3F819D3146639F1D2D4BF259ACB4 Ref B: SYD03EDGE2113 Ref C: 2025-12-23T04:58:06Z' status: code: 200 message: OK @@ -5501,9 +5567,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -5517,8 +5583,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5527,8 +5594,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5537,8 +5605,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5547,8 +5616,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5557,8 +5627,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5566,8 +5637,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5575,8 +5647,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5584,8 +5657,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5593,8 +5667,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5603,8 +5678,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5613,8 +5689,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5623,8 +5700,20 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5632,31 +5721,43 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5664,10 +5765,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5675,10 +5776,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5686,44 +5787,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5731,70 +5827,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5802,20 +5898,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5823,9 +5919,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -5833,10 +5929,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5844,10 +5939,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5855,10 +5949,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -5866,10 +5959,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5877,20 +5970,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5898,10 +5991,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -5909,48 +6002,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5958,20 +6052,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5979,28 +6073,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-11-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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6008,113 +6102,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -6123,8 +6200,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -6134,107 +6211,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -6242,38 +6324,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6281,33 +6364,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6315,43 +6394,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6359,16 +6434,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -6376,10 +6445,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -6387,16 +6456,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -6404,20 +6467,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -6425,16 +6487,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -6442,10 +6497,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -6453,10 +6508,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -6464,10 +6519,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -6475,10 +6530,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -6486,10 +6541,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -6497,33 +6552,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6531,10 +6582,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6542,10 +6604,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6553,10 +6626,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -6564,261 +6637,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -6826,16 +6899,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -6843,20 +6910,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -6864,10 +6931,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6875,20 +6941,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6896,106 +6962,123 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217725' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:48:59 GMT + - Tue, 23 Dec 2025 04:58:07 GMT expires: - '-1' pragma: @@ -7007,9 +7090,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: FE2AFC5A9F444DCC8FDB700D2DF79539 Ref B: TYO201100117045 Ref C: 2025-03-31T07:48:58Z' + - 'Ref A: AF47340CC911463EA8BB3E658F611838 Ref B: SYD03EDGE1713 Ref C: 2025-12-23T04:58:07Z' status: code: 200 message: OK @@ -7026,11 +7109,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2025-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1'' @@ -7044,7 +7127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:49:00 GMT + - Tue, 23 Dec 2025 04:58:09 GMT expires: - '-1' pragma: @@ -7058,7 +7141,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: B148CD364E0E4D87BA36295B7DF7CCB6 Ref B: TYO201151002062 Ref C: 2025-03-31T07:49:00Z' + - 'Ref A: B53A7F8E9A4F409795E39CC30AC74AC3 Ref B: SYD03EDGE2110 Ref C: 2025-12-23T04:58:08Z' status: code: 404 message: Not Found @@ -7081,14 +7164,14 @@ interactions: "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, - {"name": "f8f9bfd0-cd0b-4ea6-b311-98c01fdf0e6e", "type": "Microsoft.Authorization/roleAssignments", + {"name": "99282391-6ed2-4137-80a1-2c28e6ed4418", "type": "Microsoft.Authorization/roleAssignments", "apiVersion": "2015-07-01", "dependsOn": ["Microsoft.Compute/virtualMachines/vm1"], "properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", "principalId": "[reference(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1'', ''2019-07-01'', ''Full'').identity.principalId]", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001"}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -7107,81 +7190,30 @@ interactions: Connection: - keep-alive Content-Length: - - '3589' + - '3587' Content-Type: - - application/json - ParameterSetName: - - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_lNrvZmCInLLaEHHaQn7PeTFppCGywTYz","name":"vm_deploy_lNrvZmCInLLaEHHaQn7PeTFppCGywTYz","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4996442260803532232","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-31T07:49:02.7774883Z","duration":"PT0.0009032S","correlationId":"58991c73-5f42-47f4-b733-f9e95a12fa1e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/f8f9bfd0-cd0b-4ea6-b311-98c01fdf0e6e","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"f8f9bfd0-cd0b-4ea6-b311-98c01fdf0e6e"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_lNrvZmCInLLaEHHaQn7PeTFppCGywTYz/operationStatuses/08584581995426949795?api-version=2024-11-01&t=638790041467775912&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=cV3iY3ulmNqc5m0Flk95pXskwDrJMFpXrxOAchNolCLLhV1Pvqt01MPxLCaZ5N_82ML-SgRt6HPkpf7F2bukU-UMU3upCGqpyOJBkDR4nyEXpz3OIaz1ZEjvvIHAFJFCH-kEr7DNP2uaJ8Yd71LmIJAHfBdB72VjvjknMeNNKrwMLwPtiARwgeGU8eA5evILoaovu1ON5KxgK-Qw6FyQPzcWuX_1QSd9gft2j38sVv9IJPt5AY1-wStbPLJSVNspKUzpruYEGs06vYKOg79D5-Ppr7CbFXJv_XN1zBCBP3H5Alf1LTAc81JlvGTk00PTpVGzX6UW-LiIYhG7iakOwQ&h=92cuOvvMsN1IG8-R35DKc_z2kYJOHCnFPGjZ7gSO8sg - cache-control: - - no-cache - content-length: - - '3283' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:49:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-deployment-engine-version: - - 1.280.0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 547B0EAD5F634C2E828C6DA248F82427 Ref B: TYO201151006034 Ref C: 2025-03-31T07:49:01Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive + - application/json ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581995426949795?api-version=2024-11-01&t=638790041467775912&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=cV3iY3ulmNqc5m0Flk95pXskwDrJMFpXrxOAchNolCLLhV1Pvqt01MPxLCaZ5N_82ML-SgRt6HPkpf7F2bukU-UMU3upCGqpyOJBkDR4nyEXpz3OIaz1ZEjvvIHAFJFCH-kEr7DNP2uaJ8Yd71LmIJAHfBdB72VjvjknMeNNKrwMLwPtiARwgeGU8eA5evILoaovu1ON5KxgK-Qw6FyQPzcWuX_1QSd9gft2j38sVv9IJPt5AY1-wStbPLJSVNspKUzpruYEGs06vYKOg79D5-Ppr7CbFXJv_XN1zBCBP3H5Alf1LTAc81JlvGTk00PTpVGzX6UW-LiIYhG7iakOwQ&h=92cuOvvMsN1IG8-R35DKc_z2kYJOHCnFPGjZ7gSO8sg + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"status":"Running"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","name":"vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5259625001610856610","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T04:58:09.9016021Z","duration":"PT0.000972S","correlationId":"68b1c3e6-9cdb-492c-be5b-5660e9161e6d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/99282391-6ed2-4137-80a1-2c28e6ed4418","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"99282391-6ed2-4137-80a1-2c28e6ed4418"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH/operationStatuses/08584351409955657085?api-version=2024-11-01&t=639020626905735029&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=wKq54kU5k1SdavqwW4kQ914miOIe_uKI57MTC73eVIqA0LXl_Zr11D5ZGDjA2h3TcWDXTupfXReqAgjzXoCQJrYRUu3fiTWGcTtmxniYa6yy2KLejB5n15pQv3SJ0tB6P9PgvjrMPTc0TImJy6sMsT0Ud5m7_WVRIt8Fqlbb4bsaZ6jB6yRRKb0lxzr1XLc3RubWDoLGAe8_qoiMRG-lodBhcA-Rb6igaGi6piXvxWuz3QbhlDd26ctgjnlNTGQq4QvKRiMMEbuIsyTaU-JDVSIyO0xOClBfWTV7eJ3aeXhTCKwVdIAKp1nI8DfWDN9eQpKCe-roryiRaxsS95hC2A&h=Q1dMAMZSb2YSNrFhFXYB6eheG7ysWh_p0_-ieQVPqlc cache-control: - no-cache content-length: - - '20' + - '3282' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:49:07 GMT + - Tue, 23 Dec 2025 04:58:10 GMT expires: - '-1' pragma: @@ -7192,13 +7224,17 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-deployment-engine-version: + - 1.560.0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' x-msedge-ref: - - 'Ref A: A35C31B5EA304B02A96250B216B808A5 Ref B: TYO201151006034 Ref C: 2025-03-31T07:49:06Z' + - 'Ref A: D7A11FA284B6490CB7D1634DC7B43806 Ref B: SYD03EDGE2019 Ref C: 2025-12-23T04:58:09Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -7212,11 +7248,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581995426949795?api-version=2024-11-01&t=638790041467775912&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=cV3iY3ulmNqc5m0Flk95pXskwDrJMFpXrxOAchNolCLLhV1Pvqt01MPxLCaZ5N_82ML-SgRt6HPkpf7F2bukU-UMU3upCGqpyOJBkDR4nyEXpz3OIaz1ZEjvvIHAFJFCH-kEr7DNP2uaJ8Yd71LmIJAHfBdB72VjvjknMeNNKrwMLwPtiARwgeGU8eA5evILoaovu1ON5KxgK-Qw6FyQPzcWuX_1QSd9gft2j38sVv9IJPt5AY1-wStbPLJSVNspKUzpruYEGs06vYKOg79D5-Ppr7CbFXJv_XN1zBCBP3H5Alf1LTAc81JlvGTk00PTpVGzX6UW-LiIYhG7iakOwQ&h=92cuOvvMsN1IG8-R35DKc_z2kYJOHCnFPGjZ7gSO8sg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409955657085?api-version=2024-11-01&t=639020626905735029&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=wKq54kU5k1SdavqwW4kQ914miOIe_uKI57MTC73eVIqA0LXl_Zr11D5ZGDjA2h3TcWDXTupfXReqAgjzXoCQJrYRUu3fiTWGcTtmxniYa6yy2KLejB5n15pQv3SJ0tB6P9PgvjrMPTc0TImJy6sMsT0Ud5m7_WVRIt8Fqlbb4bsaZ6jB6yRRKb0lxzr1XLc3RubWDoLGAe8_qoiMRG-lodBhcA-Rb6igaGi6piXvxWuz3QbhlDd26ctgjnlNTGQq4QvKRiMMEbuIsyTaU-JDVSIyO0xOClBfWTV7eJ3aeXhTCKwVdIAKp1nI8DfWDN9eQpKCe-roryiRaxsS95hC2A&h=Q1dMAMZSb2YSNrFhFXYB6eheG7ysWh_p0_-ieQVPqlc response: body: string: '{"status":"Running"}' @@ -7228,7 +7264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:49:37 GMT + - Tue, 23 Dec 2025 04:58:10 GMT expires: - '-1' pragma: @@ -7242,7 +7278,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8495C598CB83433895EC45A0DDFEEFEF Ref B: TYO201151006034 Ref C: 2025-03-31T07:49:37Z' + - 'Ref A: 9DE3DBD2DCFD4C11BE8A66AAF971C8F3 Ref B: SYD03EDGE1311 Ref C: 2025-12-23T04:58:10Z' status: code: 200 message: OK @@ -7259,11 +7295,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581995426949795?api-version=2024-11-01&t=638790041467775912&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=cV3iY3ulmNqc5m0Flk95pXskwDrJMFpXrxOAchNolCLLhV1Pvqt01MPxLCaZ5N_82ML-SgRt6HPkpf7F2bukU-UMU3upCGqpyOJBkDR4nyEXpz3OIaz1ZEjvvIHAFJFCH-kEr7DNP2uaJ8Yd71LmIJAHfBdB72VjvjknMeNNKrwMLwPtiARwgeGU8eA5evILoaovu1ON5KxgK-Qw6FyQPzcWuX_1QSd9gft2j38sVv9IJPt5AY1-wStbPLJSVNspKUzpruYEGs06vYKOg79D5-Ppr7CbFXJv_XN1zBCBP3H5Alf1LTAc81JlvGTk00PTpVGzX6UW-LiIYhG7iakOwQ&h=92cuOvvMsN1IG8-R35DKc_z2kYJOHCnFPGjZ7gSO8sg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409955657085?api-version=2024-11-01&t=639020626905735029&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=wKq54kU5k1SdavqwW4kQ914miOIe_uKI57MTC73eVIqA0LXl_Zr11D5ZGDjA2h3TcWDXTupfXReqAgjzXoCQJrYRUu3fiTWGcTtmxniYa6yy2KLejB5n15pQv3SJ0tB6P9PgvjrMPTc0TImJy6sMsT0Ud5m7_WVRIt8Fqlbb4bsaZ6jB6yRRKb0lxzr1XLc3RubWDoLGAe8_qoiMRG-lodBhcA-Rb6igaGi6piXvxWuz3QbhlDd26ctgjnlNTGQq4QvKRiMMEbuIsyTaU-JDVSIyO0xOClBfWTV7eJ3aeXhTCKwVdIAKp1nI8DfWDN9eQpKCe-roryiRaxsS95hC2A&h=Q1dMAMZSb2YSNrFhFXYB6eheG7ysWh_p0_-ieQVPqlc response: body: string: '{"status":"Succeeded"}' @@ -7275,7 +7311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:08 GMT + - Tue, 23 Dec 2025 04:58:41 GMT expires: - '-1' pragma: @@ -7289,7 +7325,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1A81F2C345CD4F759986D35ABF504FB3 Ref B: TYO201151006034 Ref C: 2025-03-31T07:50:08Z' + - 'Ref A: 140694C714B84627B0F0A5B31023C0AA Ref B: SYD03EDGE1313 Ref C: 2025-12-23T04:58:41Z' status: code: 200 message: OK @@ -7306,23 +7342,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_lNrvZmCInLLaEHHaQn7PeTFppCGywTYz","name":"vm_deploy_lNrvZmCInLLaEHHaQn7PeTFppCGywTYz","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4996442260803532232","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-31T07:50:04.4693819Z","correlationId":"58991c73-5f42-47f4-b733-f9e95a12fa1e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/f8f9bfd0-cd0b-4ea6-b311-98c01fdf0e6e","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"f8f9bfd0-cd0b-4ea6-b311-98c01fdf0e6e"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/f8f9bfd0-cd0b-4ea6-b311-98c01fdf0e6e"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","name":"vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5259625001610856610","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T04:58:31.2176684Z","duration":"PT21.3160663S","correlationId":"68b1c3e6-9cdb-492c-be5b-5660e9161e6d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/99282391-6ed2-4137-80a1-2c28e6ed4418","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"99282391-6ed2-4137-80a1-2c28e6ed4418"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/99282391-6ed2-4137-80a1-2c28e6ed4418"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' headers: cache-control: - no-cache content-length: - - '4234' + - '4261' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:09 GMT + - Tue, 23 Dec 2025 04:58:41 GMT expires: - '-1' pragma: @@ -7334,9 +7370,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: 9DF3C88886AF4DEC95739DCCEDD37761 Ref B: TYO201151006034 Ref C: 2025-03-31T07:50:08Z' + - 'Ref A: 8D38875D03724049952807054B478F2E Ref B: SYD03EDGE1119 Ref C: 2025-12-23T04:58:41Z' status: code: 200 message: OK @@ -7353,9 +7389,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2025-04-01 response: @@ -7363,18 +7399,18 @@ interactions: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"89540274-5fed-4e85-80a1-9a61233551b2\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"abdaf2bb-1415-4300-9050-3a5ba87f21f1\",\r\n + \ \"principalId\": \"92e1fea0-9cb8-4f18-8288-da7a11a56894\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"f55c51fd-386c-4cc1-befc-3cc4ae8f08e2\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_eddc2eb4b9fe4c62b48daf4b3df71101\",\r\n \"createOption\": + \"vm1_disk1_92758a46067d4334842e0b6e74dee6c0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eddc2eb4b9fe4c62b48daf4b3df71101\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm1_disk1_92758a46067d4334842e0b6e74dee6c0\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -7389,29 +7425,29 @@ interactions: \ \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2025-03-31T07:50:03+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2025-12-23T04:58:37+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_eddc2eb4b9fe4c62b48daf4b3df71101\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_92758a46067d4334842e0b6e74dee6c0\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:49:27.0150222+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-23T04:58:22.0340359+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:49:56.1560125+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-23T04:58:28.6747153+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-31T07:49:24.3274957+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T04:58:20.0496344+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3411' + - '3400' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:09 GMT + - Tue, 23 Dec 2025 04:58:43 GMT expires: - '-1' pragma: @@ -7425,11 +7461,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 5DABAFFC34D14BEA8A24ABE10D50BE42 Ref B: TYO201151003054 Ref C: 2025-03-31T07:50:09Z' + - 'Ref A: 623D0F11D40C4C8E8A5DD6F699CB5526 Ref B: SYD03EDGE0719 Ref C: 2025-12-23T04:58:42Z' status: code: 200 message: '' @@ -7446,25 +7482,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01 response: body: - string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"3c6ee85d-12e2-478a-9977-8790efc2c0ba\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7c80fbb6-2db4-4cea-9dc9-5f0384e0af67","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"3c6ee85d-12e2-478a-9977-8790efc2c0ba\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"teujnddkviounlkr0f2zhdl3ua.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-3A-B0-A2","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' + string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"1f8a4213-ac26-4e76-8615-cfd4893bf45a\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"09a6dbc7-ada8-4430-a454-7861cd960746","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"1f8a4213-ac26-4e76-8615-cfd4893bf45a\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ckjwczbs4vrupor32xhgghlduh.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-37-07-B3","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '1957' + - '1958' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:10 GMT + - Tue, 23 Dec 2025 04:58:43 GMT etag: - - W/"3c6ee85d-12e2-478a-9977-8790efc2c0ba" + - W/"1f8a4213-ac26-4e76-8615-cfd4893bf45a" expires: - '-1' pragma: @@ -7476,11 +7512,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e69865db-46de-40b2-9e4a-de56fb7c627e + - a73cda53-f3e9-487d-a444-726a60c2c625 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 6263CD7E4DCD40BAB1FFC99A33DE49D6 Ref B: TYO201100114011 Ref C: 2025-03-31T07:50:10Z' + - 'Ref A: 6A9C2CBA69E142F2A0B1DCF12FD1CDB4 Ref B: SYD03EDGE2019 Ref C: 2025-12-23T04:58:43Z' status: code: 200 message: OK @@ -7497,25 +7533,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule + --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"7490a957-3645-44b6-a0b0-a7946dd139d1\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7065aeae-f9d7-4f74-ad09-18325dd57c46","ipAddress":"20.245.232.28","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"44e01777-1c22-4e7a-8a97-9818dc5a1ca1\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0d56aea7-af7c-41ba-a1d2-244a31d43aec","ipAddress":"172.184.242.35","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '781' + - '782' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:10 GMT + - Tue, 23 Dec 2025 04:58:43 GMT etag: - - W/"7490a957-3645-44b6-a0b0-a7946dd139d1" + - W/"44e01777-1c22-4e7a-8a97-9818dc5a1ca1" expires: - '-1' pragma: @@ -7527,11 +7563,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 61edeb45-3a5c-4632-9a7e-b5182189e14f + - 98095dcc-72fb-4a64-9a35-3ecfd569ff09 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BA28008AFF7F48B898E30236387E99AF Ref B: TYO201100115037 Ref C: 2025-03-31T07:50:11Z' + - 'Ref A: A09B1536F09C41ED9619B1DCBE837C08 Ref B: SYD03EDGE1906 Ref C: 2025-12-23T04:58:44Z' status: code: 200 message: OK @@ -7549,12 +7585,12 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"b06a1672-8f22-44d9-b400-1ea489273251\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSI5NFFOLKFPALA644IU7G7CCFFJTVZ3XUJ3GWSTGEAURUPERXHN7HTJPMJT4F4/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"2d865f8a-8632-417e-b486-d29535abc0a3\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -7563,9 +7599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:12 GMT + - Tue, 23 Dec 2025 04:58:46 GMT etag: - - W/"b06a1672-8f22-44d9-b400-1ea489273251" + - W/"2d865f8a-8632-417e-b486-d29535abc0a3" expires: - '-1' pragma: @@ -7577,13 +7613,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9fbe3ef5-db59-4cd2-a423-18105c96210c + - c0fef051-49ba-4425-a7cb-8aa60ac7828d x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/35f1a526-7937-452c-8b98-8c00eacf9fa2 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/92fa721b-1292-4f02-bfb4-5adef2c796c8 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0B7171B4E75A4939BECAB0EA366BF223 Ref B: TYO201100114025 Ref C: 2025-03-31T07:50:12Z' + - 'Ref A: 65FB4494705A4EF68AE063801EC57B96 Ref B: SYD03EDGE1718 Ref C: 2025-12-23T04:58:46Z' status: code: 200 message: OK @@ -7608,17 +7644,17 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"fd010311-d39c-4803-8df9-43f6bcba21c2\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f7131616-5006-4421-b336-6c6feae6d21c\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0c73ffa0-9cd6-4c32-879b-7db5399cf350?api-version=2024-01-01&t=638790042138164835&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=dBGL9GvSS-sKU-Rz1JMeYP2--xfM0DD_bwgTDPi9oGH3MRkpzRidQ1cdEowsZ-0Bkz3IlyLLnxRf-8sqlMJN8dXPprCNAXD2t4xjqLdZq99ZFliu9CrcSDG8dPy0OsjVHcPps4h7a64F3PfOEM4qhqmAplPGQHFSz1N0aWD94KkvfZsMuBMsNZklHSQMhEH1w6rdh1g5Koi7aUSOuQ5eSJ2WKWAy_TOlNglYPA9qkWsl1ePTniHT6DXZcsOvhPh9zvyASYHRhVDHu0jXX6vwg9p3meXOf8mkFEFNunEATErkUJ6cts3yJS2TIF5yJoGYDUsi_X5myF1RC7sI6tfM0g&h=7QT4WX0-r1fZO3rmF7jcOGozsGHESy7PLFMTrbYZgj4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6b18965-db27-4961-8f71-b04840b4df05?api-version=2024-07-01&t=639020627270780890&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=rE58QexEc7YUczr4mU6GTcxXgRch6nc40NxJiPmnl1h5ssteFaTGHn0zsoCO3lLtL-jSH1h6JSc418DBd6e4n9xsY6YCmOosj4vaB2wYdf5BJt3teDmMpPn_AY5EEAb-dEiENFS6GMOfdhAd4tUspfRTiBcD9bVZrnQWJwVy40PtSGKF3ItIEsL7xeJqDvc795JrTjsTejV4xuTCEw7B1ugjd6JvuMeqXlOoS6D30scY4Lo4H8bbchIUbpAO-7tJjZG0GlXmfqH_bBfwF5vJ1QijhOLjAxNVybsOxLo83qaOlxA_HJsM1d-7sZJKeeFyvm3PQjPVEvxWxoS829QooA&h=Smusry2W0oGmCroRIipcJqOirhEPyLiUwASXd0sWbqs cache-control: - no-cache content-length: @@ -7626,7 +7662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:13 GMT + - Tue, 23 Dec 2025 04:58:46 GMT expires: - '-1' pragma: @@ -7638,15 +7674,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb602692-30e1-401c-bc02-8ee5644184c3 + - b24fc11d-e702-44b5-8d80-8ce7913561d0 x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ca635221-c26f-4fc9-b6ff-aa58e6cce67e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/2e867ea4-8088-4cec-948c-b8e54f91a04e x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 7A04694B0B2C4721A25FC0F3234A5E92 Ref B: TYO201100114025 Ref C: 2025-03-31T07:50:13Z' + - 'Ref A: B4D76A4CBB33419896D230CE383B3A81 Ref B: SYD03EDGE1407 Ref C: 2025-12-23T04:58:46Z' status: code: 200 message: OK @@ -7664,9 +7700,9 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0c73ffa0-9cd6-4c32-879b-7db5399cf350?api-version=2024-01-01&t=638790042138164835&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=dBGL9GvSS-sKU-Rz1JMeYP2--xfM0DD_bwgTDPi9oGH3MRkpzRidQ1cdEowsZ-0Bkz3IlyLLnxRf-8sqlMJN8dXPprCNAXD2t4xjqLdZq99ZFliu9CrcSDG8dPy0OsjVHcPps4h7a64F3PfOEM4qhqmAplPGQHFSz1N0aWD94KkvfZsMuBMsNZklHSQMhEH1w6rdh1g5Koi7aUSOuQ5eSJ2WKWAy_TOlNglYPA9qkWsl1ePTniHT6DXZcsOvhPh9zvyASYHRhVDHu0jXX6vwg9p3meXOf8mkFEFNunEATErkUJ6cts3yJS2TIF5yJoGYDUsi_X5myF1RC7sI6tfM0g&h=7QT4WX0-r1fZO3rmF7jcOGozsGHESy7PLFMTrbYZgj4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6b18965-db27-4961-8f71-b04840b4df05?api-version=2024-07-01&t=639020627270780890&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=rE58QexEc7YUczr4mU6GTcxXgRch6nc40NxJiPmnl1h5ssteFaTGHn0zsoCO3lLtL-jSH1h6JSc418DBd6e4n9xsY6YCmOosj4vaB2wYdf5BJt3teDmMpPn_AY5EEAb-dEiENFS6GMOfdhAd4tUspfRTiBcD9bVZrnQWJwVy40PtSGKF3ItIEsL7xeJqDvc795JrTjsTejV4xuTCEw7B1ugjd6JvuMeqXlOoS6D30scY4Lo4H8bbchIUbpAO-7tJjZG0GlXmfqH_bBfwF5vJ1QijhOLjAxNVybsOxLo83qaOlxA_HJsM1d-7sZJKeeFyvm3PQjPVEvxWxoS829QooA&h=Smusry2W0oGmCroRIipcJqOirhEPyLiUwASXd0sWbqs response: body: string: '{"status":"Succeeded"}' @@ -7678,7 +7714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:13 GMT + - Tue, 23 Dec 2025 04:58:47 GMT expires: - '-1' pragma: @@ -7690,13 +7726,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c337d665-0b60-46fd-aea3-5f2ea980e8cb + - 9875061d-69e3-4392-ad8b-fd1aa9b8780e x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/41e283da-19ca-4c9a-8a99-278872e80c7e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/40b141eb-9100-4af2-8ca8-2ba2683eb5a3 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F19660AD714146D890153C9C35F830FE Ref B: TYO201100114025 Ref C: 2025-03-31T07:50:13Z' + - 'Ref A: 73F975B1F3CB4E81BDD3B568B0FD9EC8 Ref B: SYD03EDGE1312 Ref C: 2025-12-23T04:58:47Z' status: code: 200 message: OK @@ -7714,12 +7750,12 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"be2a24b3-00fe-466f-b07b-0973d9ac2686\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSI5NFFOLKFPALA644IU7G7CCFFJTVZ3XUJ3GWSTGEAURUPERXHN7HTJPMJT4F4/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f4ac5a0c-02d6-442f-aeec-e76658673097\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -7728,9 +7764,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:14 GMT + - Tue, 23 Dec 2025 04:58:48 GMT etag: - - W/"be2a24b3-00fe-466f-b07b-0973d9ac2686" + - W/"f4ac5a0c-02d6-442f-aeec-e76658673097" expires: - '-1' pragma: @@ -7742,13 +7778,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 27b055dc-a3bd-44ba-ac50-1a1adde63db2 + - a8b3417a-105c-4b1e-a276-e8950e86486c x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/dd520a3d-3c70-4148-9b44-f6bf1913ee19 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/219334d9-35bd-498a-9d66-a0e74cdace02 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 66BE89452EEE4017B2E71A4CC9CEF8E7 Ref B: TYO201100114025 Ref C: 2025-03-31T07:50:14Z' + - 'Ref A: 06446B369166446CBE41A9DC6DFA3745 Ref B: SYD03EDGE1921 Ref C: 2025-12-23T04:58:47Z' status: code: 200 message: OK @@ -7765,23 +7801,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-03-31T07:48:34Z","module":"vm","DateCreated":"2025-03-31T07:48:39Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '355' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:15 GMT + - Tue, 23 Dec 2025 04:58:48 GMT expires: - '-1' pragma: @@ -7795,7 +7831,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DFF8A78676BC46A790CE8C1D5D0F0634 Ref B: TYO201100114047 Ref C: 2025-03-31T07:50:15Z' + - 'Ref A: 01DEC3CC4BFF4461A9C0F479C2C55970 Ref B: SYD03EDGE2015 Ref C: 2025-12-23T04:58:49Z' status: code: 200 message: OK @@ -7809,7 +7845,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.4 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -7882,35 +7918,35 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Mon, 31 Mar 2025 07:50:15 GMT + - Tue, 23 Dec 2025 04:58:50 GMT etag: - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67" expires: - - Mon, 31 Mar 2025 07:55:15 GMT + - Tue, 23 Dec 2025 05:03:50 GMT source-age: - - '203' + - '0' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding,Origin + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: - - HIT + - MISS x-cache-hits: - '0' x-content-type-options: - nosniff x-fastly-request-id: - - 800ca4623e7c00077936ae2a24901ad6c79a43d8 + - 8c8761be13d4eec7a52339a690496deb9d1c7db1 x-frame-options: - deny x-github-request-id: - - CF7A:2779F2:B89996:1529C98:67EA3FAD + - 6FEC:25554F:93192:B3230:694A218A x-served-by: - - cache-tyo11928-TYO + - cache-wsi-ysbk1060080-WSI x-timer: - - S1743407416.953579,VS0,VE1 + - S1766465930.747227,VS0,VE832 x-xss-protection: - 1; mode=block status: @@ -7929,15 +7965,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.3328.250306\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n \ }\r\n]" headers: cache-control: @@ -7947,7 +7983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:15 GMT + - Tue, 23 Dec 2025 04:58:51 GMT expires: - '-1' pragma: @@ -7959,13 +7995,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/81ea46a8-c783-4719-a978-6dd3bfcddd38 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiasoutheast/011df34b-b73c-4f44-8404-2bdbfa223873 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43951 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 28A7CD5ABAF0466EA0A1C264DA37240A Ref B: TYO201151003031 Ref C: 2025-03-31T07:50:16Z' + - 'Ref A: 8DCE70D1AD5B4B25A016402D7F195A18 Ref B: SYD03EDGE1409 Ref C: 2025-12-23T04:58:50Z' status: code: 200 message: OK @@ -7982,11 +8018,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3328.250306?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.4529.251205?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -8001,9 +8037,9 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-11T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.3328.250306\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n}" + 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-12-09T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n}" headers: cache-control: - no-cache @@ -8012,7 +8048,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:17 GMT + - Tue, 23 Dec 2025 04:58:50 GMT expires: - '-1' pragma: @@ -8024,13 +8060,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/dd6113aa-ae26-4cc8-b630-ea665dc2bdba + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/53fb090e-555d-4284-bb5b-baf9900fa4d1 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73955 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4BD535A8DC41487493E467DCBA3248BD Ref B: TYO201100114017 Ref C: 2025-03-31T07:50:16Z' + - 'Ref A: DB3108C086BD41E490153742EF9BA35A Ref B: SYD03EDGE1907 Ref C: 2025-12-23T04:58:51Z' status: code: 200 message: OK @@ -8047,9 +8083,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -8063,8 +8099,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8073,8 +8110,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8083,8 +8121,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8093,8 +8132,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8103,8 +8143,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8112,8 +8153,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8121,8 +8163,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8130,8 +8173,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -8139,8 +8183,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8149,8 +8194,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8159,8 +8205,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8169,8 +8216,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -8178,31 +8226,54 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8210,10 +8281,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8221,10 +8292,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8232,44 +8303,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8277,70 +8343,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8348,20 +8414,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -8369,9 +8435,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -8379,10 +8445,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -8390,10 +8455,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -8401,10 +8465,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -8412,10 +8475,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8423,20 +8486,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8444,10 +8507,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -8455,48 +8518,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8504,20 +8568,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8525,28 +8589,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-11-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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8554,113 +8618,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -8669,8 +8716,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -8680,107 +8727,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -8788,38 +8840,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8827,33 +8880,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8861,43 +8910,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8905,16 +8950,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8922,10 +8961,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -8933,16 +8972,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -8950,20 +8983,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -8971,16 +9003,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8988,10 +9013,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -8999,10 +9024,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -9010,10 +9035,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -9021,10 +9046,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -9032,10 +9057,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -9043,33 +9068,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9077,10 +9098,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9088,10 +9120,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9099,10 +9142,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -9110,261 +9153,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -9372,16 +9415,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -9389,20 +9426,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -9410,10 +9447,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9421,20 +9457,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9442,106 +9478,123 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217725' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:17 GMT + - Tue, 23 Dec 2025 04:58:52 GMT expires: - '-1' pragma: @@ -9555,7 +9608,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BB1CE0059A474E2498A47B30EBBBA664 Ref B: TYO201100115047 Ref C: 2025-03-31T07:50:17Z' + - 'Ref A: C506922B4ACA47919A365387278DA44A Ref B: SYD03EDGE1416 Ref C: 2025-12-23T04:58:51Z' status: code: 200 message: OK @@ -9572,14 +9625,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"be2a24b3-00fe-466f-b07b-0973d9ac2686\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSI5NFFOLKFPALA644IU7G7CCFFJTVZ3XUJ3GWSTGEAURUPERXHN7HTJPMJT4F4/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f4ac5a0c-02d6-442f-aeec-e76658673097\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -9588,9 +9641,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:18 GMT + - Tue, 23 Dec 2025 04:58:54 GMT etag: - - W/"be2a24b3-00fe-466f-b07b-0973d9ac2686" + - W/"f4ac5a0c-02d6-442f-aeec-e76658673097" expires: - '-1' pragma: @@ -9602,13 +9655,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 396b0b74-6cca-4594-9d9a-88cf89f7535c + - fc7152f5-192c-4d37-9cef-923c1d0a6e63 x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ded8ee41-b473-43d6-9fda-52443f44f984 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/c0d13d60-2ca4-4cbc-b7eb-e909b02ecde5 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E32052A48D7748B08DD8FF6C7A681321 Ref B: TYO201151002062 Ref C: 2025-03-31T07:50:18Z' + - 'Ref A: CFFE47F5C99243DDBB9FA22C84416E1B Ref B: SYD03EDGE0716 Ref C: 2025-12-23T04:58:53Z' status: code: 200 message: OK @@ -9625,9 +9678,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27reader%27&api-version=2022-05-01-preview response: @@ -9642,7 +9695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:19 GMT + - Tue, 23 Dec 2025 04:58:54 GMT expires: - '-1' pragma: @@ -9654,11 +9707,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/96497bfd-60df-4492-9bcd-23d33df49c9f + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/4781c6d6-7679-49f7-82bb-d4aa87a48797 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 96E25472D3774311AEE1A9020F4F8ADF Ref B: TYO201100114045 Ref C: 2025-03-31T07:50:19Z' + - 'Ref A: CE7FE2028B774081BE2A1218625533CB Ref B: SYD03EDGE1720 Ref C: 2025-12-23T04:58:54Z' status: code: 200 message: OK @@ -9672,7 +9725,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.4 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -9745,17 +9798,17 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Mon, 31 Mar 2025 07:50:20 GMT + - Tue, 23 Dec 2025 04:58:54 GMT etag: - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67" expires: - - Mon, 31 Mar 2025 07:55:20 GMT + - Tue, 23 Dec 2025 05:03:54 GMT source-age: - - '207' + - '4' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding,Origin + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: @@ -9765,15 +9818,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 8e91c84f5062f8b3d5c94e461040d35b2279e636 + - 0336387608005d1269c36c6584b4a9de6f4a5b5c x-frame-options: - deny x-github-request-id: - - CF7A:2779F2:B89996:1529C98:67EA3FAD + - 6FEC:25554F:93192:B3230:694A218A x-served-by: - - cache-tyo11955-TYO + - cache-wsi-ysbk1060034-WSI x-timer: - - S1743407420.091172,VS0,VE2 + - S1766465935.611932,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -9792,15 +9845,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.3328.250306\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n \ }\r\n]" headers: cache-control: @@ -9810,7 +9863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:20 GMT + - Tue, 23 Dec 2025 04:58:54 GMT expires: - '-1' pragma: @@ -9822,13 +9875,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/fe09b1dd-852f-455f-91ea-d4525f7b4b4d + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/4f180d6d-f7a6-4a22-bc8b-d727e9ed3d81 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43950 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8464E314F0E84AB3867772E7B0DFAD98 Ref B: TYO201100117039 Ref C: 2025-03-31T07:50:20Z' + - 'Ref A: B24B8B92B6DB4F5F91B2011D2CC3D499 Ref B: SYD03EDGE0805 Ref C: 2025-12-23T04:58:54Z' status: code: 200 message: OK @@ -9845,11 +9898,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3328.250306?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.4529.251205?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -9864,9 +9917,9 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-11T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.3328.250306\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n}" + 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-12-09T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n}" headers: cache-control: - no-cache @@ -9875,7 +9928,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:21 GMT + - Tue, 23 Dec 2025 04:58:54 GMT expires: - '-1' pragma: @@ -9887,13 +9940,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/affbe45d-fc1b-46a8-af5d-57db96c59fbe + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/42c2a947-eeed-4861-96db-f30cb2cc7c67 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73954 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 308291E4BEFB4EA78AC0A6B4D095BED6 Ref B: TYO201151005042 Ref C: 2025-03-31T07:50:21Z' + - 'Ref A: 3F7F9681523F4573831019DE1ACC35C1 Ref B: SYD03EDGE1908 Ref C: 2025-12-23T04:58:54Z' status: code: 200 message: OK @@ -9910,15 +9963,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.3328.250306\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n \ }\r\n]" headers: cache-control: @@ -9928,7 +9981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:21 GMT + - Tue, 23 Dec 2025 04:58:55 GMT expires: - '-1' pragma: @@ -9940,13 +9993,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0e33a72b-9f15-4667-b5f5-afda3c63db54 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/524c261e-f466-4b3d-9a4e-5ec90287fecd x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43949 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BB9366FB3CBC4B42BFE695FA67B310A1 Ref B: TYO201151001054 Ref C: 2025-03-31T07:50:21Z' + - 'Ref A: 1BF0D182CAB84C4CAD48729830449767 Ref B: SYD03EDGE1715 Ref C: 2025-12-23T04:58:55Z' status: code: 200 message: OK @@ -9963,11 +10016,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3328.250306?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.4529.251205?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -9982,9 +10035,9 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-11T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.3328.250306\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3328.250306\"\r\n}" + 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-12-09T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n}" headers: cache-control: - no-cache @@ -9993,7 +10046,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:21 GMT + - Tue, 23 Dec 2025 04:58:56 GMT expires: - '-1' pragma: @@ -10005,13 +10058,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/943dacd3-52d3-4230-9cc5-b4e5369d77ed + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/3dae731c-c04a-4ac8-a895-3d58f42733df x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73953 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: FB7809E3BEE342C68BB958E1BCC49170 Ref B: TYO201100113049 Ref C: 2025-03-31T07:50:22Z' + - 'Ref A: 599E0ED757AB4323A0B2FFB2E8CECA83 Ref B: SYD03EDGE0808 Ref C: 2025-12-23T04:58:55Z' status: code: 200 message: OK @@ -10031,7 +10084,7 @@ interactions: "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"}}}, - {"name": "vm1/Microsoft.Authorization/66ddfedc-5b32-47bf-bd2f-09f20fd26115", + {"name": "vm1/Microsoft.Authorization/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24", "type": "Microsoft.Compute/virtualMachines/providers/roleAssignments", "apiVersion": "2015-07-01", "dependsOn": ["Microsoft.Compute/virtualMachines/vm2"], "properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", @@ -10039,7 +10092,7 @@ interactions: ''2019-07-01'', ''Full'').identity.principalId]", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm2", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm2VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -10060,30 +10113,81 @@ interactions: Connection: - keep-alive Content-Length: - - '3503' + - '3501' Content-Type: - application/json ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_ADKJd1XCli2aWXkcAsCA9kJcWBgOPTQQ","name":"vm_deploy_ADKJd1XCli2aWXkcAsCA9kJcWBgOPTQQ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13179452794897467681","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-31T07:50:24.3988845Z","duration":"PT0.0001386S","correlationId":"3e4afd94-ab1f-42de-bac0-0919dac2d198","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/providers/roleAssignments","locations":[null]},{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/66ddfedc-5b32-47bf-bd2f-09f20fd26115","resourceType":"Microsoft.Compute/virtualMachines/providers/roleAssignments","resourceName":"vm1/Microsoft.Authorization/66ddfedc-5b32-47bf-bd2f-09f20fd26115"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","name":"vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"996190911651546349","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T04:59:00.5815985Z","duration":"PT0.0003805S","correlationId":"d2ec5ddf-2584-45e2-8ef9-ebeb1219f364","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/providers/roleAssignments","locations":[null]},{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24","resourceType":"Microsoft.Compute/virtualMachines/providers/roleAssignments","resourceName":"vm1/Microsoft.Authorization/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_ADKJd1XCli2aWXkcAsCA9kJcWBgOPTQQ/operationStatuses/08584581994610632285?api-version=2024-11-01&t=638790042278677858&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=PlKCk5_lKnr_UOAsplwrBmfcNKpdsHMS52iRGmrnek8i4bdNhiqJKEWnEA_pXhL5NOezeqd4RH7h15tFp1usRuV5Dqk2bjhgUPHEB9YmNda15uS9Y0paakSJXwflH0zsBEAXyhzFPsJaWr0RO0DOg6AZ1d7Mfb-ZLRG61ZPO1YymsW3gPoOIeJgkMMjl9U8hRlbKSUn7jYDGsl828pdXlLnMn8UKsyF002uZVZkrY8jgTELAa3-BcQfCiBVCIZ2qLUDLuDoErVabFpCtKYQhR4Bm-JiPEIMMPuWNmKV4MaYyx4ZDXxdrsVuDRWYaWBOX1IqzY3gRFj_3AYlTYe_y9A&h=cH1TLrKsg844aM_c_re5r6wVKCVHFVN_9QHwCN9MPi4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI + cache-control: + - no-cache + content-length: + - '3066' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Dec 2025 04:59:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-deployment-engine-version: + - 1.560.0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: F130B740DE9C452FB7611431C1C3603F Ref B: SYD03EDGE1007 Ref C: 2025-12-23T04:58:56Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --scope --role --admin-username --admin-password + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI + response: + body: + string: '{"status":"Running"}' + headers: cache-control: - no-cache content-length: - - '3068' + - '20' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:27 GMT + - Tue, 23 Dec 2025 04:59:04 GMT expires: - '-1' pragma: @@ -10094,17 +10198,13 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-deployment-engine-version: - - 1.280.0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: E30368C7DD814D2A881E8D7EFA4E33B6 Ref B: TYO201100114023 Ref C: 2025-03-31T07:50:23Z' + - 'Ref A: 7D4072344E8E45ABA171D5055CB54D8A Ref B: SYD03EDGE0808 Ref C: 2025-12-23T04:59:04Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -10118,11 +10218,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581994610632285?api-version=2024-11-01&t=638790042278677858&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=PlKCk5_lKnr_UOAsplwrBmfcNKpdsHMS52iRGmrnek8i4bdNhiqJKEWnEA_pXhL5NOezeqd4RH7h15tFp1usRuV5Dqk2bjhgUPHEB9YmNda15uS9Y0paakSJXwflH0zsBEAXyhzFPsJaWr0RO0DOg6AZ1d7Mfb-ZLRG61ZPO1YymsW3gPoOIeJgkMMjl9U8hRlbKSUn7jYDGsl828pdXlLnMn8UKsyF002uZVZkrY8jgTELAa3-BcQfCiBVCIZ2qLUDLuDoErVabFpCtKYQhR4Bm-JiPEIMMPuWNmKV4MaYyx4ZDXxdrsVuDRWYaWBOX1IqzY3gRFj_3AYlTYe_y9A&h=cH1TLrKsg844aM_c_re5r6wVKCVHFVN_9QHwCN9MPi4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI response: body: string: '{"status":"Running"}' @@ -10134,7 +10234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:28 GMT + - Tue, 23 Dec 2025 04:59:35 GMT expires: - '-1' pragma: @@ -10148,7 +10248,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4AB041F7928B41B0B5B7BE9E64871CE7 Ref B: TYO201100114023 Ref C: 2025-03-31T07:50:28Z' + - 'Ref A: 4437F2F5809049D5B98BC47E9F2DDAF1 Ref B: SYD03EDGE1922 Ref C: 2025-12-23T04:59:34Z' status: code: 200 message: OK @@ -10165,11 +10265,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581994610632285?api-version=2024-11-01&t=638790042278677858&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=PlKCk5_lKnr_UOAsplwrBmfcNKpdsHMS52iRGmrnek8i4bdNhiqJKEWnEA_pXhL5NOezeqd4RH7h15tFp1usRuV5Dqk2bjhgUPHEB9YmNda15uS9Y0paakSJXwflH0zsBEAXyhzFPsJaWr0RO0DOg6AZ1d7Mfb-ZLRG61ZPO1YymsW3gPoOIeJgkMMjl9U8hRlbKSUn7jYDGsl828pdXlLnMn8UKsyF002uZVZkrY8jgTELAa3-BcQfCiBVCIZ2qLUDLuDoErVabFpCtKYQhR4Bm-JiPEIMMPuWNmKV4MaYyx4ZDXxdrsVuDRWYaWBOX1IqzY3gRFj_3AYlTYe_y9A&h=cH1TLrKsg844aM_c_re5r6wVKCVHFVN_9QHwCN9MPi4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI response: body: string: '{"status":"Running"}' @@ -10181,7 +10281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:50:59 GMT + - Tue, 23 Dec 2025 05:00:05 GMT expires: - '-1' pragma: @@ -10195,7 +10295,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0C97D726235847CFB08BF9147BCFEB4D Ref B: TYO201100114023 Ref C: 2025-03-31T07:50:58Z' + - 'Ref A: F630E6AD908B40AB9F81A24DFB6C2706 Ref B: SYD03EDGE1917 Ref C: 2025-12-23T05:00:05Z' status: code: 200 message: OK @@ -10212,11 +10312,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581994610632285?api-version=2024-11-01&t=638790042278677858&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=PlKCk5_lKnr_UOAsplwrBmfcNKpdsHMS52iRGmrnek8i4bdNhiqJKEWnEA_pXhL5NOezeqd4RH7h15tFp1usRuV5Dqk2bjhgUPHEB9YmNda15uS9Y0paakSJXwflH0zsBEAXyhzFPsJaWr0RO0DOg6AZ1d7Mfb-ZLRG61ZPO1YymsW3gPoOIeJgkMMjl9U8hRlbKSUn7jYDGsl828pdXlLnMn8UKsyF002uZVZkrY8jgTELAa3-BcQfCiBVCIZ2qLUDLuDoErVabFpCtKYQhR4Bm-JiPEIMMPuWNmKV4MaYyx4ZDXxdrsVuDRWYaWBOX1IqzY3gRFj_3AYlTYe_y9A&h=cH1TLrKsg844aM_c_re5r6wVKCVHFVN_9QHwCN9MPi4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI response: body: string: '{"status":"Running"}' @@ -10228,7 +10328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:51:29 GMT + - Tue, 23 Dec 2025 05:00:36 GMT expires: - '-1' pragma: @@ -10240,9 +10340,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: A1E4C0F230EC41548DC6DEB82EC8134B Ref B: TYO201100114023 Ref C: 2025-03-31T07:51:29Z' + - 'Ref A: 0C9ED7140CD94B4E91C01021D75CA68B Ref B: SYD03EDGE0815 Ref C: 2025-12-23T05:00:36Z' status: code: 200 message: OK @@ -10259,11 +10359,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581994610632285?api-version=2024-11-01&t=638790042278677858&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=PlKCk5_lKnr_UOAsplwrBmfcNKpdsHMS52iRGmrnek8i4bdNhiqJKEWnEA_pXhL5NOezeqd4RH7h15tFp1usRuV5Dqk2bjhgUPHEB9YmNda15uS9Y0paakSJXwflH0zsBEAXyhzFPsJaWr0RO0DOg6AZ1d7Mfb-ZLRG61ZPO1YymsW3gPoOIeJgkMMjl9U8hRlbKSUn7jYDGsl828pdXlLnMn8UKsyF002uZVZkrY8jgTELAa3-BcQfCiBVCIZ2qLUDLuDoErVabFpCtKYQhR4Bm-JiPEIMMPuWNmKV4MaYyx4ZDXxdrsVuDRWYaWBOX1IqzY3gRFj_3AYlTYe_y9A&h=cH1TLrKsg844aM_c_re5r6wVKCVHFVN_9QHwCN9MPi4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI response: body: string: '{"status":"Succeeded"}' @@ -10275,7 +10375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:00 GMT + - Tue, 23 Dec 2025 05:01:07 GMT expires: - '-1' pragma: @@ -10289,7 +10389,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FF54BD58BA15425B90CA87C9E68EE4F2 Ref B: TYO201100114023 Ref C: 2025-03-31T07:51:59Z' + - 'Ref A: 4DCC68B75CAD4986B06AD102E56CEAF6 Ref B: SYD03EDGE1409 Ref C: 2025-12-23T05:01:07Z' status: code: 200 message: OK @@ -10306,23 +10406,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_ADKJd1XCli2aWXkcAsCA9kJcWBgOPTQQ","name":"vm_deploy_ADKJd1XCli2aWXkcAsCA9kJcWBgOPTQQ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13179452794897467681","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-31T07:51:50.3913243Z","correlationId":"3e4afd94-ab1f-42de-bac0-0919dac2d198","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/providers/roleAssignments","locations":[null]},{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/66ddfedc-5b32-47bf-bd2f-09f20fd26115","resourceType":"Microsoft.Compute/virtualMachines/providers/roleAssignments","resourceName":"vm1/Microsoft.Authorization/66ddfedc-5b32-47bf-bd2f-09f20fd26115"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/66ddfedc-5b32-47bf-bd2f-09f20fd26115"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","name":"vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"996190911651546349","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:00:53.0947769Z","duration":"PT1M52.5131784S","correlationId":"d2ec5ddf-2584-45e2-8ef9-ebeb1219f364","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/providers/roleAssignments","locations":[null]},{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24","resourceType":"Microsoft.Compute/virtualMachines/providers/roleAssignments","resourceName":"vm1/Microsoft.Authorization/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3919' + - '3946' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:00 GMT + - Tue, 23 Dec 2025 05:01:08 GMT expires: - '-1' pragma: @@ -10336,7 +10436,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BCEB9ED8D88D4EF387FB68589B747B90 Ref B: TYO201100114023 Ref C: 2025-03-31T07:52:00Z' + - 'Ref A: 5CAB0FA307B449D2B2A22A4EC1122059 Ref B: SYD03EDGE0706 Ref C: 2025-12-23T05:01:08Z' status: code: 200 message: OK @@ -10353,9 +10453,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2025-04-01 response: @@ -10363,18 +10463,18 @@ interactions: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"5c46d186-4d02-4c19-9f10-05986d3b3fcc\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"72d963e3-8277-41b4-ad27-2a3b564a1870\",\r\n + \ \"principalId\": \"d39b107d-eb54-4144-898c-d4349519b8de\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"f8f7d96c-b5b9-46fa-aa91-bb22b1b3f153\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"20348.3328.250306\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"vm2_OsDisk_1_a0f2f5e08cfc4f578819f527b418f663\",\r\n + \"20348.4529.251205\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"vm2_OsDisk_1_1c7b7145eaf84296ad70cecc3e4aa34f\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_a0f2f5e08cfc4f578819f527b418f663\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_1c7b7145eaf84296ad70cecc3e4aa34f\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\",\r\n @@ -10392,28 +10492,28 @@ interactions: \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \ \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2025-03-31T07:52:01+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm2_OsDisk_1_a0f2f5e08cfc4f578819f527b418f663\",\r\n + \"2025-12-23T05:01:09+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm2_OsDisk_1_1c7b7145eaf84296ad70cecc3e4aa34f\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:50:41.7969179+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-23T04:59:20.0660747+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:51:40.7973552+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-23T05:00:45.8328514+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-31T07:50:39.0156391+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T04:59:17.9253641+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3618' + - '3616' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:01 GMT + - Tue, 23 Dec 2025 05:01:09 GMT expires: - '-1' pragma: @@ -10427,11 +10527,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23989,Microsoft.Compute/LowCostGetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B65F618C9E5B46F7A61D6EC65BE43D2D Ref B: TYO201100117049 Ref C: 2025-03-31T07:52:01Z' + - 'Ref A: 8824DBBE908E4348AF9D571627B5AA2E Ref B: SYD03EDGE0919 Ref C: 2025-12-23T05:01:09Z' status: code: 200 message: '' @@ -10448,25 +10548,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2022-01-01 response: body: - string: '{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"e007fd9a-4aba-483f-8ef4-95473d79654c\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"cbea0d54-623b-4400-80a9-1f135f097194","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"e007fd9a-4aba-483f-8ef4-95473d79654c\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"teujnddkviounlkr0f2zhdl3ua.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-5C-D7-1F","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' + string: '{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"3ec0e768-352a-4c2c-9a1a-84d2bf1e63d5\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"64784a71-7ce1-4150-9a87-9366f2068ef8","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"3ec0e768-352a-4c2c-9a1a-84d2bf1e63d5\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ckjwczbs4vrupor32xhgghlduh.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-09-F9-00","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '1957' + - '1958' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:02 GMT + - Tue, 23 Dec 2025 05:01:09 GMT etag: - - W/"e007fd9a-4aba-483f-8ef4-95473d79654c" + - W/"3ec0e768-352a-4c2c-9a1a-84d2bf1e63d5" expires: - '-1' pragma: @@ -10478,11 +10578,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec470a79-91a0-4329-95de-49e2f2c11116 + - 16bc58f8-a619-4b32-a7aa-6203a5baa5ab x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0EEBFDEC520643728E93162995328E75 Ref B: TYO201151001062 Ref C: 2025-03-31T07:52:02Z' + - 'Ref A: 53556223D4944F468B55A45384B186E8 Ref B: SYD03EDGE2014 Ref C: 2025-12-23T05:01:09Z' status: code: 200 message: OK @@ -10499,25 +10599,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"vm2PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","etag":"W/\"287ea026-f803-40cb-ba06-2f5ec1955281\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c7aa926e-73d1-4759-a8fd-0b98b5508918","ipAddress":"20.43.243.26","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"vm2PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","etag":"W/\"804c184e-1567-44b4-8556-ccf65892fd5a\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"11fb8568-e217-4bc3-a8f3-ae29aacd0fc3","ipAddress":"52.159.145.119","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '780' + - '782' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:03 GMT + - Tue, 23 Dec 2025 05:01:09 GMT etag: - - W/"287ea026-f803-40cb-ba06-2f5ec1955281" + - W/"804c184e-1567-44b4-8556-ccf65892fd5a" expires: - '-1' pragma: @@ -10529,11 +10629,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bccc06fe-8753-4f86-af5f-3e1dcb9d017c + - 0d6ef1ac-339d-4626-9f7a-01a9e3da06f3 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8A4E4FB815904602ABAD6CD52618F8CB Ref B: TYO201100115023 Ref C: 2025-03-31T07:52:02Z' + - 'Ref A: C01A39D90BC94EB4A93D9849DF294AE9 Ref B: SYD03EDGE1906 Ref C: 2025-12-23T05:01:09Z' status: code: 200 message: OK @@ -10550,22 +10650,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-03-31T07:48:34Z","module":"vm","DateCreated":"2025-03-31T07:48:39Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '355' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:03 GMT + - Tue, 23 Dec 2025 05:01:09 GMT expires: - '-1' pragma: @@ -10579,7 +10680,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E35CFFB6E6F040D096475F80A9B4CD5E Ref B: TYO201151001042 Ref C: 2025-03-31T07:52:04Z' + - 'Ref A: 6912319D54254F149D009EA387A6208C Ref B: SYD03EDGE1914 Ref C: 2025-12-23T05:01:10Z' status: code: 200 message: OK @@ -10596,14 +10697,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -10613,7 +10715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:04 GMT + - Tue, 23 Dec 2025 05:01:10 GMT expires: - '-1' pragma: @@ -10625,13 +10727,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/9b602a55-ad94-4a4b-a4eb-9ea6772ef25f + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/35855287-c7b5-4d8f-801a-ac27e0a07963 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4EC4CC0CC1D64A228114474E1B94BABB Ref B: TYO201151002025 Ref C: 2025-03-31T07:52:04Z' + - 'Ref A: 117D2241D7294E33B9ED8866A7EEAD34 Ref B: SYD03EDGE2017 Ref C: 2025-12-23T05:01:10Z' status: code: 200 message: OK @@ -10648,33 +10750,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:05 GMT + - Tue, 23 Dec 2025 05:01:11 GMT expires: - '-1' pragma: @@ -10686,13 +10792,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/811e1be5-6a06-40c9-9efc-61fd5c62db0a + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/b5d2d545-84a9-405e-8456-d8413bb73d1a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73940 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73981 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C25AE13838A3427093692B297FD3302A Ref B: TYO201151004042 Ref C: 2025-03-31T07:52:05Z' + - 'Ref A: F9582001AFCA4A34885772350460A871 Ref B: SYD03EDGE1011 Ref C: 2025-12-23T05:01:11Z' status: code: 200 message: OK @@ -10709,8 +10815,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -10724,8 +10831,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -10734,8 +10842,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -10744,8 +10853,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -10754,8 +10864,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -10764,8 +10875,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -10773,8 +10885,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -10782,8 +10895,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -10791,8 +10905,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -10800,8 +10915,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -10810,8 +10926,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -10820,8 +10937,9 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -10830,8 +10948,20 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -10839,31 +10969,43 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -10871,10 +11013,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -10882,10 +11024,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -10893,44 +11035,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -10938,70 +11075,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -11009,20 +11146,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -11030,9 +11167,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -11040,10 +11177,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -11051,10 +11187,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -11062,10 +11197,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -11073,10 +11207,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11084,20 +11218,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11105,10 +11239,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -11116,48 +11250,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11165,20 +11300,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -11186,28 +11321,28 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-11-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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11215,113 +11350,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-09-01-preview","2024-11-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -11330,8 +11448,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -11341,107 +11459,112 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -11449,38 +11572,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11488,33 +11612,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11522,43 +11642,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11566,16 +11682,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -11583,10 +11693,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -11594,16 +11704,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -11611,20 +11715,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -11632,16 +11735,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -11649,10 +11745,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -11660,10 +11756,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -11671,10 +11767,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -11682,10 +11778,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -11693,10 +11789,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -11704,33 +11800,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Indonesia - Central","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]},{"location":"Italy - North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Japan - West","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North - Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland - Central","zones":["2","3","1"]},{"location":"Qatar Central","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":"Spain Central","zones":["2","3","1"]},{"location":"Sweden - Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE - North","zones":["2","3","1"]},{"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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11738,10 +11830,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11749,10 +11852,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -11760,10 +11874,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -11771,261 +11885,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -12033,16 +12147,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia - East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -12050,20 +12158,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -12071,10 +12179,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -12082,20 +12189,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -12103,106 +12210,123 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-11-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '209850' + - '217725' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:06 GMT + - Tue, 23 Dec 2025 05:01:13 GMT expires: - '-1' pragma: @@ -12214,9 +12338,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 0A5FBBFF68FF4BE9BF59860DCD00D84D Ref B: TYO201151001029 Ref C: 2025-03-31T07:52:06Z' + - 'Ref A: E7DD10FF85174C338B22E2F1E1C5D2DC Ref B: SYD03EDGE1922 Ref C: 2025-12-23T05:01:12Z' status: code: 200 message: OK @@ -12233,13 +12357,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"be2a24b3-00fe-466f-b07b-0973d9ac2686\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSI5NFFOLKFPALA644IU7G7CCFFJTVZ3XUJ3GWSTGEAURUPERXHN7HTJPMJT4F4/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSI5NFFOLKFPALA644IU7G7CCFFJTVZ3XUJ3GWSTGEAURUPERXHN7HTJPMJT4F4/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f4ac5a0c-02d6-442f-aeec-e76658673097\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -12248,9 +12373,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:07 GMT + - Tue, 23 Dec 2025 05:01:13 GMT etag: - - W/"be2a24b3-00fe-466f-b07b-0973d9ac2686" + - W/"f4ac5a0c-02d6-442f-aeec-e76658673097" expires: - '-1' pragma: @@ -12262,13 +12387,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e246bb5b-c2f8-4cb4-b310-dda63670205b + - 867b920c-36dc-4bc1-bbc8-488f8e6a93de x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/46e46cd8-5cb1-4dd6-ae1a-cff42e11a6cd + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiasoutheast/38bf18d4-7e9f-455a-98eb-e1c5f338e4a8 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D05376BE022B43E7A4CFE51BD3AAC0CD Ref B: TYO201151001060 Ref C: 2025-03-31T07:52:07Z' + - 'Ref A: B8D86277536F42299A9EE85D7CFEDEA9 Ref B: SYD03EDGE1916 Ref C: 2025-12-23T05:01:13Z' status: code: 200 message: OK @@ -12285,14 +12410,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -12302,7 +12428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:08 GMT + - Tue, 23 Dec 2025 05:01:14 GMT expires: - '-1' pragma: @@ -12314,13 +12440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/691be60a-bd8c-45c5-8845-01b2f5da81ad + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/28f09c12-ccf4-4219-bf86-8388d0bffe71 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 784C017EFB5F493CB00C9CEE238CDBF9 Ref B: TYO201151001062 Ref C: 2025-03-31T07:52:08Z' + - 'Ref A: 3E318F0A7EC846549EF5892EB6925E0D Ref B: SYD03EDGE1718 Ref C: 2025-12-23T05:01:14Z' status: code: 200 message: OK @@ -12337,33 +12463,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:09 GMT + - Tue, 23 Dec 2025 05:01:15 GMT expires: - '-1' pragma: @@ -12375,13 +12505,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/604d0e4e-289d-49a3-b94e-061ac7892dbf + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/1cee6816-18cd-41e1-be85-51ebedc903a8 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73939 + - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73980 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5EDD594916744AACBEAE1AE7477159E2 Ref B: TYO201151001036 Ref C: 2025-03-31T07:52:09Z' + - 'Ref A: E67FFDBF763B4CD69D219E8508A5E5B3 Ref B: SYD03EDGE1018 Ref C: 2025-12-23T05:01:15Z' status: code: 200 message: OK @@ -12398,14 +12528,15 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n \ }\r\n]" headers: cache-control: @@ -12415,7 +12546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:10 GMT + - Tue, 23 Dec 2025 05:01:15 GMT expires: - '-1' pragma: @@ -12427,13 +12558,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/e27aed3e-092c-45be-aeee-c68375bd35e8 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/6bf657d1-ac57-4c63-b29f-4607216151d1 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 185335B18CC8421583FBD5F9B23E2AD6 Ref B: TYO201100114033 Ref C: 2025-03-31T07:52:10Z' + - 'Ref A: 8DE7B9956C27408DA1AE91474B1ED184 Ref B: SYD03EDGE1420 Ref C: 2025-12-23T05:01:15Z' status: code: 200 message: OK @@ -12450,33 +12581,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:10 GMT + - Tue, 23 Dec 2025 05:01:16 GMT expires: - '-1' pragma: @@ -12488,13 +12623,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8f631db3-e112-4c9a-b936-9d817a6dd162 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/cd7f5afb-2323-4655-ad4c-9d560dbf9de8 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73938 + - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73979 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E417DDD67B674F6F87265B38425FE350 Ref B: TYO201100113049 Ref C: 2025-03-31T07:52:10Z' + - 'Ref A: FBD5DCDD95954C89B01EED36CAB9C159 Ref B: SYD03EDGE0909 Ref C: 2025-12-23T05:01:16Z' status: code: 200 message: OK @@ -12516,7 +12651,7 @@ interactions: "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"}}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm3", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm3VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -12535,29 +12670,30 @@ interactions: Connection: - keep-alive Content-Length: - - '2534' + - '2532' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_1sCh7vT9r1rbz8SEH8VD4G0YSYMMmTuS","name":"vm_deploy_1sCh7vT9r1rbz8SEH8VD4G0YSYMMmTuS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17355798038653742450","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-31T07:52:13.0087958Z","duration":"PT0.0007412S","correlationId":"5437d67a-cf0c-493d-886a-74a7a366dbf2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","name":"vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2149135842603612670","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T05:01:17.3950835Z","duration":"PT0.0006419S","correlationId":"07d39568-3007-45d6-8948-cde956760300","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_1sCh7vT9r1rbz8SEH8VD4G0YSYMMmTuS/operationStatuses/08584581993524614279?api-version=2024-11-01&t=638790043371494301&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=VEXJNQF2y1z6F7cml1m_jvkakmSpShVssk7o0dydMZHkd_VzNXljd0vsBFP8wKdxhfbqX1e8V0w84aUWarySUEmaN68RBt47R6zAENiqIpGn7m7d6aGBphVqVp67aYxxjJ6iZ3QaC-S75C61C66dsmsJ0O093ueqOr30UXSMJmZA7zWAUC-P5aXKCae0Dg8dgTOh5pEYeHYEKmzDKP0ZonWdafhyc3mlGa7PuDNFb5h_ojMYDByR1ck-hyOku1U6NX7hPPVPi7UfC-4lLaQdD8y2_vWyPOST_buv3c6bEJ2FOiqITNe_Am70BZ0jmLNN6tpiklxpsJv3EGW7Nys7IQ&h=XmceQftdlTSpozHP7A_L4W1w-fvgVfmU5nOCV0apH1Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE/operationStatuses/08584351408080728759?api-version=2024-11-01&t=639020628779106595&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=VhQ2WrMZK-phxUM7lRqqO4DAPvyuXE47_YFH_z9T7fQkd5qhMeetvjyMRYX0dBzwJNlnuggwOSZChGFQcGs9Z3DgZcKWjR6bedfkOsQTn7lB9L8IreGUkc3UnCccEZQCk1oyK_mmAM-AIk8V6HLwQLEMZ5oDbq9ROyu4sgOWjZot8miDYN6rL9xkN6r-LrdUUm8gluP4K4SEK6TNEt1tAxKPmPUAgt1yIvsv3JErJvKpxmVpYXohJNeDOihMMncoUgNRFAIjXH2eOzTp3k0oResZXDpP9phDExc_i11LSMNVI6zd2ynd9-GTe5Ksv_cvtUfIBqp_-da-5H7E36P01g&h=KMFJTHSttaRADIkqtffyQtbO5ZtaFVYmW31CH2miVCg cache-control: - no-cache content-length: - - '2120' + - '2119' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:16 GMT + - Tue, 23 Dec 2025 05:01:17 GMT expires: - '-1' pragma: @@ -12569,13 +12705,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.280.0 + - 1.560.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 4B0846F0649A4E2490C50AD65ACE3CAE Ref B: TYO201100116053 Ref C: 2025-03-31T07:52:11Z' + - 'Ref A: 92F19121A49441A1B68FDA5C77BAAA63 Ref B: SYD03EDGE2009 Ref C: 2025-12-23T05:01:16Z' status: code: 201 message: Created @@ -12592,56 +12728,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581993524614279?api-version=2024-11-01&t=638790043371494301&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=VEXJNQF2y1z6F7cml1m_jvkakmSpShVssk7o0dydMZHkd_VzNXljd0vsBFP8wKdxhfbqX1e8V0w84aUWarySUEmaN68RBt47R6zAENiqIpGn7m7d6aGBphVqVp67aYxxjJ6iZ3QaC-S75C61C66dsmsJ0O093ueqOr30UXSMJmZA7zWAUC-P5aXKCae0Dg8dgTOh5pEYeHYEKmzDKP0ZonWdafhyc3mlGa7PuDNFb5h_ojMYDByR1ck-hyOku1U6NX7hPPVPi7UfC-4lLaQdD8y2_vWyPOST_buv3c6bEJ2FOiqITNe_Am70BZ0jmLNN6tpiklxpsJv3EGW7Nys7IQ&h=XmceQftdlTSpozHP7A_L4W1w-fvgVfmU5nOCV0apH1Y - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 31 Mar 2025 07:52:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 86DBE0F4F0264B6681AB432F789B4835 Ref B: TYO201100116053 Ref C: 2025-03-31T07:52:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581993524614279?api-version=2024-11-01&t=638790043371494301&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=VEXJNQF2y1z6F7cml1m_jvkakmSpShVssk7o0dydMZHkd_VzNXljd0vsBFP8wKdxhfbqX1e8V0w84aUWarySUEmaN68RBt47R6zAENiqIpGn7m7d6aGBphVqVp67aYxxjJ6iZ3QaC-S75C61C66dsmsJ0O093ueqOr30UXSMJmZA7zWAUC-P5aXKCae0Dg8dgTOh5pEYeHYEKmzDKP0ZonWdafhyc3mlGa7PuDNFb5h_ojMYDByR1ck-hyOku1U6NX7hPPVPi7UfC-4lLaQdD8y2_vWyPOST_buv3c6bEJ2FOiqITNe_Am70BZ0jmLNN6tpiklxpsJv3EGW7Nys7IQ&h=XmceQftdlTSpozHP7A_L4W1w-fvgVfmU5nOCV0apH1Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351408080728759?api-version=2024-11-01&t=639020628779106595&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=VhQ2WrMZK-phxUM7lRqqO4DAPvyuXE47_YFH_z9T7fQkd5qhMeetvjyMRYX0dBzwJNlnuggwOSZChGFQcGs9Z3DgZcKWjR6bedfkOsQTn7lB9L8IreGUkc3UnCccEZQCk1oyK_mmAM-AIk8V6HLwQLEMZ5oDbq9ROyu4sgOWjZot8miDYN6rL9xkN6r-LrdUUm8gluP4K4SEK6TNEt1tAxKPmPUAgt1yIvsv3JErJvKpxmVpYXohJNeDOihMMncoUgNRFAIjXH2eOzTp3k0oResZXDpP9phDExc_i11LSMNVI6zd2ynd9-GTe5Ksv_cvtUfIBqp_-da-5H7E36P01g&h=KMFJTHSttaRADIkqtffyQtbO5ZtaFVYmW31CH2miVCg response: body: string: '{"status":"Running"}' @@ -12653,7 +12744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:52:50 GMT + - Tue, 23 Dec 2025 05:01:18 GMT expires: - '-1' pragma: @@ -12667,7 +12758,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7DAB3B63308F474D975EB8E39B479F6E Ref B: TYO201100116053 Ref C: 2025-03-31T07:52:50Z' + - 'Ref A: C68D25DBF78B4D88A2C69D0FF659ADB3 Ref B: SYD03EDGE1416 Ref C: 2025-12-23T05:01:18Z' status: code: 200 message: OK @@ -12684,10 +12775,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584581993524614279?api-version=2024-11-01&t=638790043371494301&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=VEXJNQF2y1z6F7cml1m_jvkakmSpShVssk7o0dydMZHkd_VzNXljd0vsBFP8wKdxhfbqX1e8V0w84aUWarySUEmaN68RBt47R6zAENiqIpGn7m7d6aGBphVqVp67aYxxjJ6iZ3QaC-S75C61C66dsmsJ0O093ueqOr30UXSMJmZA7zWAUC-P5aXKCae0Dg8dgTOh5pEYeHYEKmzDKP0ZonWdafhyc3mlGa7PuDNFb5h_ojMYDByR1ck-hyOku1U6NX7hPPVPi7UfC-4lLaQdD8y2_vWyPOST_buv3c6bEJ2FOiqITNe_Am70BZ0jmLNN6tpiklxpsJv3EGW7Nys7IQ&h=XmceQftdlTSpozHP7A_L4W1w-fvgVfmU5nOCV0apH1Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351408080728759?api-version=2024-11-01&t=639020628779106595&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=VhQ2WrMZK-phxUM7lRqqO4DAPvyuXE47_YFH_z9T7fQkd5qhMeetvjyMRYX0dBzwJNlnuggwOSZChGFQcGs9Z3DgZcKWjR6bedfkOsQTn7lB9L8IreGUkc3UnCccEZQCk1oyK_mmAM-AIk8V6HLwQLEMZ5oDbq9ROyu4sgOWjZot8miDYN6rL9xkN6r-LrdUUm8gluP4K4SEK6TNEt1tAxKPmPUAgt1yIvsv3JErJvKpxmVpYXohJNeDOihMMncoUgNRFAIjXH2eOzTp3k0oResZXDpP9phDExc_i11LSMNVI6zd2ynd9-GTe5Ksv_cvtUfIBqp_-da-5H7E36P01g&h=KMFJTHSttaRADIkqtffyQtbO5ZtaFVYmW31CH2miVCg response: body: string: '{"status":"Succeeded"}' @@ -12699,7 +12791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:53:29 GMT + - Tue, 23 Dec 2025 05:01:49 GMT expires: - '-1' pragma: @@ -12713,7 +12805,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 25D6583A55204A7085C86EB2855F67B3 Ref B: TYO201100116053 Ref C: 2025-03-31T07:53:29Z' + - 'Ref A: 43B715C8BFEE40ACBFC39CEF9FEB7A92 Ref B: SYD03EDGE1911 Ref C: 2025-12-23T05:01:49Z' status: code: 200 message: OK @@ -12730,22 +12822,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_1sCh7vT9r1rbz8SEH8VD4G0YSYMMmTuS","name":"vm_deploy_1sCh7vT9r1rbz8SEH8VD4G0YSYMMmTuS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17355798038653742450","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-31T07:53:10.2515474Z","correlationId":"5437d67a-cf0c-493d-886a-74a7a366dbf2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","name":"vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2149135842603612670","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:01:48.0762247Z","duration":"PT30.6811412S","correlationId":"07d39568-3007-45d6-8948-cde956760300","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '2738' + - '2764' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:03 GMT + - Tue, 23 Dec 2025 05:01:49 GMT expires: - '-1' pragma: @@ -12759,7 +12852,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CE7D3E62E4914AD7A111174584F30BFE Ref B: TYO201100113051 Ref C: 2025-03-31T07:54:03Z' + - 'Ref A: 583B44FA56C14132950ED89B6AE266B2 Ref B: SYD03EDGE1119 Ref C: 2025-12-23T05:01:49Z' status: code: 200 message: OK @@ -12776,8 +12869,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?$expand=instanceView&api-version=2025-04-01 response: @@ -12785,16 +12879,16 @@ interactions: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -12809,29 +12903,29 @@ interactions: \ \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2025-03-31T07:53:13+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2025-12-23T05:01:46+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:52:34.6414733+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-23T05:01:32.145991+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-03-31T07:53:08.0166891+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-23T05:01:45.0524204+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3241' + - '3229' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:10 GMT + - Tue, 23 Dec 2025 05:01:50 GMT expires: - '-1' pragma: @@ -12845,11 +12939,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B85801FDEF4D4160A44EC8D97CAA5DC8 Ref B: TYO201100115053 Ref C: 2025-03-31T07:54:09Z' + - 'Ref A: E7F60808F9144E88B776FFC9C67352D6 Ref B: SYD03EDGE0808 Ref C: 2025-12-23T05:01:50Z' status: code: 200 message: '' @@ -12866,24 +12960,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic?api-version=2022-01-01 response: body: - string: '{"name":"vm3VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","etag":"W/\"763855f8-a51f-4c1b-8a70-a991c3e92d22\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6108d566-3995-4c6a-9268-d82e8f004df3","ipConfigurations":[{"name":"ipconfigvm3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3","etag":"W/\"763855f8-a51f-4c1b-8a70-a991c3e92d22\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"teujnddkviounlkr0f2zhdl3ua.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-00-A0-D8","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' + string: '{"name":"vm3VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","etag":"W/\"3d5320f3-a500-4ec2-99d5-39c31f1269ea\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6498c98e-8e33-4f45-b286-8ccc44864251","ipConfigurations":[{"name":"ipconfigvm3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3","etag":"W/\"3d5320f3-a500-4ec2-99d5-39c31f1269ea\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ckjwczbs4vrupor32xhgghlduh.dx.internal.cloudapp.net"},"macAddress":"00-22-48-0B-86-29","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '1957' + - '1958' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:14 GMT + - Tue, 23 Dec 2025 05:01:51 GMT etag: - - W/"763855f8-a51f-4c1b-8a70-a991c3e92d22" + - W/"3d5320f3-a500-4ec2-99d5-39c31f1269ea" expires: - '-1' pragma: @@ -12895,11 +12990,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee78be87-d548-4067-80b2-c06f8554fcbc + - ab307fcb-ca80-4e3b-936f-ebab54ceebcb x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2CD5CAD140AC4C3DA0616A6CA7B852F1 Ref B: TYO201100115051 Ref C: 2025-03-31T07:54:13Z' + - 'Ref A: 31CA1384A3C7402CAE05AF5D5A37AE8C Ref B: SYD03EDGE1011 Ref C: 2025-12-23T05:01:51Z' status: code: 200 message: OK @@ -12916,24 +13011,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"vm3PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","etag":"W/\"e385a507-3dd0-411c-926f-d29997912bd5\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e22af4c3-aa51-4b73-ae25-b1e29b384fa7","ipAddress":"20.253.225.49","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"vm3PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","etag":"W/\"5656683d-e617-418b-adde-276c26aeb438\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5b8404cb-76d3-4e7c-aab4-61efde347c3e","ipAddress":"172.185.39.188","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '781' + - '782' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:14 GMT + - Tue, 23 Dec 2025 05:01:51 GMT etag: - - W/"e385a507-3dd0-411c-926f-d29997912bd5" + - W/"5656683d-e617-418b-adde-276c26aeb438" expires: - '-1' pragma: @@ -12945,11 +13041,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 17e6d6c9-a77f-4174-b8a3-2caccf643fba + - b31e9b4a-222c-4e1b-b043-f588efd31343 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 4F2EE2625B654196A213056C6BD638D4 Ref B: TYO201100117035 Ref C: 2025-03-31T07:54:14Z' + - 'Ref A: 553C444C71004092ADD08AC102FD2BE9 Ref B: SYD03EDGE2119 Ref C: 2025-12-23T05:01:51Z' status: code: 200 message: OK @@ -12967,7 +13063,7 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27reader%27&api-version=2022-05-01-preview response: @@ -12982,7 +13078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:15 GMT + - Tue, 23 Dec 2025 05:01:52 GMT expires: - '-1' pragma: @@ -12994,11 +13090,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/185cec86-2f19-4061-bb26-79859b5407f2 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiasoutheast/bcdb94cf-6ab0-4a74-8618-acf9e6cc53cb x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9923F954BE5045C7BF50658C8CB01249 Ref B: TYO201100115033 Ref C: 2025-03-31T07:54:15Z' + - 'Ref A: 5BFC0E7A146440318B43384BC1E2A4E5 Ref B: SYD03EDGE2111 Ref C: 2025-12-23T05:01:52Z' status: code: 200 message: OK @@ -13016,24 +13112,24 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13043,17 +13139,17 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '1941' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:15 GMT + - Tue, 23 Dec 2025 05:01:52 GMT etag: - '"2"' expires: @@ -13069,11 +13165,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5768A970909F4BAC8E8B9E741FC42A8E Ref B: TYO201151005031 Ref C: 2025-03-31T07:54:16Z' + - 'Ref A: A7D58273D5B6455BB6130838A54A3DE1 Ref B: SYD03EDGE2114 Ref C: 2025-12-23T05:01:53Z' status: code: 200 message: '' @@ -13095,7 +13191,7 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 response: @@ -13103,18 +13199,18 @@ interactions: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"ac717a3d-c85c-467a-b9cc-83a80b5eb6bd\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n + \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Updating\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13124,21 +13220,21 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9c60167d-a892-446a-9a89-0821014f64d1?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790044596203886&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=SVN-c0DCtLTIZuXOoKlM5WPJmPyZI-KON_P0aEGL5Vxe7lUVzrZiq-kngsWI5qnzm40XMooVmKlDHy1qCcUlYU52Xomnx9RrAww36AoeBY0-GxohneVU5TP0iu5EAVTFgNQn3SWSoHPMI-5S77outxbTUtkaTndXqRX4qZ1yzXCZaX_3nQr_phiM1TdeY-vGTKcIZ5i98ZwjbDEijKJoAgWqzW6yP1RFZ75OlI4WS1v83TfzT4TegrA9Ri1XNB_L0Um-GGKimUs4bB2dXtBXmPIe_tJWnfTWQ5L6-qmZMPNOvU4xjPc8QPjSue7NJP0bqkMRGERshv6rWn2kjujsgQ&h=I0ZkovBfVCDhJ318b8cGlk32z6jSbiEhi3cvzjZRJV8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e877c064-cb0f-466e-aa80-75f091ccc4c0?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629144808496&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=xFS1Nee1oGEIy-v-ekSnZZRkeP5wGigORtAsyjlYoM9ioSdiLPN1CZN_A5VZAkK04DuBV9zx-pdPuo8IjdMMp3F84Q16pJ61eIaQUEdo0SU2JWbKF-9R762A1kuhZokjTc5QnHMme3hxB8E-lBa38MkkMuY5d7LEHS2eKTuflH81s1ykz7llfF6QsI4FuIS5GELKSgNABRu_j6S7Y_AfsnWslg7HtSaNrw51nnQCfM-E370NystJ65_23ztHlrTcEE8OhtH6c5U6dz_9vBzDMm0DAgbfx0h4hxTbEnRkpkwKDlkk489_mqR0RHQLkctosBcSqpc__XV8iYl-DFecIg&h=paIV62HNqGlzk5LUcPNeeBxuvjX9LfoMe-TYZD8Mxmc cache-control: - no-cache content-length: - - '2118' + - '2110' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:20 GMT + - Tue, 23 Dec 2025 05:01:53 GMT etag: - '"3"' expires: @@ -13154,7 +13250,7 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b44fc369-4f09-4fe2-9b04-c723556ca810 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/3f1310c1-bd11-49f2-835a-e66175b29a9c x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: @@ -13162,7 +13258,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: ABF053AE1F6A4482927D42ABD1ED21CE Ref B: TYO201100117037 Ref C: 2025-03-31T07:54:17Z' + - 'Ref A: 10D9FA8321D247EDA7DCD6D10AE9FDF0 Ref B: SYD03EDGE1922 Ref C: 2025-12-23T05:01:53Z' status: code: 200 message: '' @@ -13180,13 +13276,13 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9c60167d-a892-446a-9a89-0821014f64d1?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790044596203886&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=SVN-c0DCtLTIZuXOoKlM5WPJmPyZI-KON_P0aEGL5Vxe7lUVzrZiq-kngsWI5qnzm40XMooVmKlDHy1qCcUlYU52Xomnx9RrAww36AoeBY0-GxohneVU5TP0iu5EAVTFgNQn3SWSoHPMI-5S77outxbTUtkaTndXqRX4qZ1yzXCZaX_3nQr_phiM1TdeY-vGTKcIZ5i98ZwjbDEijKJoAgWqzW6yP1RFZ75OlI4WS1v83TfzT4TegrA9Ri1XNB_L0Um-GGKimUs4bB2dXtBXmPIe_tJWnfTWQ5L6-qmZMPNOvU4xjPc8QPjSue7NJP0bqkMRGERshv6rWn2kjujsgQ&h=I0ZkovBfVCDhJ318b8cGlk32z6jSbiEhi3cvzjZRJV8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e877c064-cb0f-466e-aa80-75f091ccc4c0?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629144808496&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=xFS1Nee1oGEIy-v-ekSnZZRkeP5wGigORtAsyjlYoM9ioSdiLPN1CZN_A5VZAkK04DuBV9zx-pdPuo8IjdMMp3F84Q16pJ61eIaQUEdo0SU2JWbKF-9R762A1kuhZokjTc5QnHMme3hxB8E-lBa38MkkMuY5d7LEHS2eKTuflH81s1ykz7llfF6QsI4FuIS5GELKSgNABRu_j6S7Y_AfsnWslg7HtSaNrw51nnQCfM-E370NystJ65_23ztHlrTcEE8OhtH6c5U6dz_9vBzDMm0DAgbfx0h4hxTbEnRkpkwKDlkk489_mqR0RHQLkctosBcSqpc__XV8iYl-DFecIg&h=paIV62HNqGlzk5LUcPNeeBxuvjX9LfoMe-TYZD8Mxmc response: body: - string: "{\r\n \"startTime\": \"2025-03-31T07:54:19.1733507+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9c60167d-a892-446a-9a89-0821014f64d1\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:01:54.4119276+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e877c064-cb0f-466e-aa80-75f091ccc4c0\"\r\n}" headers: cache-control: - no-cache @@ -13195,7 +13291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:20 GMT + - Tue, 23 Dec 2025 05:01:54 GMT expires: - '-1' pragma: @@ -13209,13 +13305,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/3f5ec597-ee2c-4262-9dbf-af9669ca1d0b + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/ee48e2e8-7e20-4c78-96d0-e6cbe9d2de39 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: A79F1163848344F7B7853315569B4015 Ref B: TYO201100117037 Ref C: 2025-03-31T07:54:20Z' + - 'Ref A: 81FF2AF9D013481BBF2028B32BD02996 Ref B: SYD03EDGE0819 Ref C: 2025-12-23T05:01:54Z' status: code: 200 message: '' @@ -13233,14 +13329,14 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9c60167d-a892-446a-9a89-0821014f64d1?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790044596203886&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=SVN-c0DCtLTIZuXOoKlM5WPJmPyZI-KON_P0aEGL5Vxe7lUVzrZiq-kngsWI5qnzm40XMooVmKlDHy1qCcUlYU52Xomnx9RrAww36AoeBY0-GxohneVU5TP0iu5EAVTFgNQn3SWSoHPMI-5S77outxbTUtkaTndXqRX4qZ1yzXCZaX_3nQr_phiM1TdeY-vGTKcIZ5i98ZwjbDEijKJoAgWqzW6yP1RFZ75OlI4WS1v83TfzT4TegrA9Ri1XNB_L0Um-GGKimUs4bB2dXtBXmPIe_tJWnfTWQ5L6-qmZMPNOvU4xjPc8QPjSue7NJP0bqkMRGERshv6rWn2kjujsgQ&h=I0ZkovBfVCDhJ318b8cGlk32z6jSbiEhi3cvzjZRJV8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e877c064-cb0f-466e-aa80-75f091ccc4c0?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629144808496&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=xFS1Nee1oGEIy-v-ekSnZZRkeP5wGigORtAsyjlYoM9ioSdiLPN1CZN_A5VZAkK04DuBV9zx-pdPuo8IjdMMp3F84Q16pJ61eIaQUEdo0SU2JWbKF-9R762A1kuhZokjTc5QnHMme3hxB8E-lBa38MkkMuY5d7LEHS2eKTuflH81s1ykz7llfF6QsI4FuIS5GELKSgNABRu_j6S7Y_AfsnWslg7HtSaNrw51nnQCfM-E370NystJ65_23ztHlrTcEE8OhtH6c5U6dz_9vBzDMm0DAgbfx0h4hxTbEnRkpkwKDlkk489_mqR0RHQLkctosBcSqpc__XV8iYl-DFecIg&h=paIV62HNqGlzk5LUcPNeeBxuvjX9LfoMe-TYZD8Mxmc response: body: - string: "{\r\n \"startTime\": \"2025-03-31T07:54:19.1733507+00:00\",\r\n \"endTime\": - \"2025-03-31T07:54:26.2515136+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9c60167d-a892-446a-9a89-0821014f64d1\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:01:54.4119276+00:00\",\r\n \"endTime\": + \"2025-12-23T05:01:59.3807463+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e877c064-cb0f-466e-aa80-75f091ccc4c0\"\r\n}" headers: cache-control: - no-cache @@ -13249,7 +13345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:50 GMT + - Tue, 23 Dec 2025 05:02:25 GMT expires: - '-1' pragma: @@ -13263,13 +13359,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/177df1ab-5712-44b6-b97e-a7ef2f150542 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/ab6a40e0-919a-4f39-a425-4275f8f289bc x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: EBFC9B4666174950A4B4DEA83DFFC4B6 Ref B: TYO201100117037 Ref C: 2025-03-31T07:54:50Z' + - 'Ref A: 4D60D5A6A79D4A989D1797A1AC71FF21 Ref B: SYD03EDGE0714 Ref C: 2025-12-23T05:02:25Z' status: code: 200 message: '' @@ -13287,7 +13383,7 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 response: @@ -13295,18 +13391,18 @@ interactions: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"ac717a3d-c85c-467a-b9cc-83a80b5eb6bd\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n + \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13316,17 +13412,17 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '2119' + - '2111' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:51 GMT + - Tue, 23 Dec 2025 05:02:26 GMT etag: - '"3"' expires: @@ -13342,17 +13438,17 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;31 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;28 x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: 3A678781071A4E81BBEA908072D0E45B Ref B: TYO201100117037 Ref C: 2025-03-31T07:54:51Z' + - 'Ref A: AF535424814A4E03A14F4ABF4C3661E3 Ref B: SYD03EDGE1320 Ref C: 2025-12-23T05:02:25Z' status: code: 200 message: '' - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "ac717a3d-c85c-467a-b9cc-83a80b5eb6bd"}}' + "principalId": "adaffc47-9ae2-4228-8d2b-57c76ed093f4"}}' headers: Accept: - application/json @@ -13369,12 +13465,12 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/c1543594-227d-46eb-9d08-8186771b5a47?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ac717a3d-c85c-467a-b9cc-83a80b5eb6bd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","condition":null,"conditionVersion":null,"createdOn":"2025-03-31T07:54:52.4985815Z","updatedOn":"2025-03-31T07:54:53.2974573Z","createdBy":null,"updatedBy":"d44a2991-98c6-47c3-b59b-2b30d72cfcc2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"adaffc47-9ae2-4228-8d2b-57c76ed093f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","condition":null,"conditionVersion":null,"createdOn":"2025-12-23T05:02:27.1373637Z","updatedOn":"2025-12-23T05:02:28.3364067Z","createdBy":null,"updatedBy":"326f7b68-6ce9-4387-a87e-632b4c8bd41a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/c1543594-227d-46eb-9d08-8186771b5a47","type":"Microsoft.Authorization/roleAssignments","name":"c1543594-227d-46eb-9d08-8186771b5a47"}' headers: cache-control: - no-cache @@ -13383,7 +13479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:55 GMT + - Tue, 23 Dec 2025 05:02:32 GMT expires: - '-1' pragma: @@ -13395,13 +13491,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/47dab2f1-b31e-48eb-b88d-2fabb566cbb2 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/9be42fa3-9bcd-41e7-8219-ea5f8e6b234e x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: F1433D7A3D614B5B990F0561F1A8A344 Ref B: TYO201151005054 Ref C: 2025-03-31T07:54:52Z' + - 'Ref A: E6BACBEEBFA64680B0E16AD3F2AD3F6C Ref B: SYD03EDGE1017 Ref C: 2025-12-23T05:02:26Z' status: code: 201 message: Created @@ -13419,26 +13515,26 @@ interactions: ParameterSetName: - -g -n --scope --role User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"ac717a3d-c85c-467a-b9cc-83a80b5eb6bd\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n + \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13448,17 +13544,17 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '2119' + - '2111' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:56 GMT + - Tue, 23 Dec 2025 05:02:32 GMT etag: - '"3"' expires: @@ -13474,11 +13570,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;30 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;27 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 81CF91EFD22D459195D841922EC96E52 Ref B: TYO201151005031 Ref C: 2025-03-31T07:54:56Z' + - 'Ref A: 1B4BE3075CDB41C19C3FCC6BCBDB3CF5 Ref B: SYD03EDGE1416 Ref C: 2025-12-23T05:02:32Z' status: code: 200 message: '' @@ -13496,26 +13592,26 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"ac717a3d-c85c-467a-b9cc-83a80b5eb6bd\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n + \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13525,17 +13621,17 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '2119' + - '2111' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:54:57 GMT + - Tue, 23 Dec 2025 05:02:33 GMT etag: - '"3"' expires: @@ -13551,16 +13647,16 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;29 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;26 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E7334ECCB3F546D194A442DA54B1E6F7 Ref B: TYO201100117051 Ref C: 2025-03-31T07:54:57Z' + - 'Ref A: 984C38AE20F64639B132B66B804D5D1F Ref B: SYD03EDGE0721 Ref C: 2025-12-23T05:02:33Z' status: code: 200 message: '' - request: - body: '{"identity": {"type": "None"}}' + body: '{"identity": {"userAssignedIdentities": null, "type": "None"}}' headers: Accept: - application/json @@ -13571,13 +13667,13 @@ interactions: Connection: - keep-alive Content-Length: - - '30' + - '62' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 response: @@ -13585,16 +13681,16 @@ interactions: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13604,21 +13700,21 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7f42f6ed-16d8-49c5-bcda-c2afbfd7b5b9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790045016548167&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=JY73flYKikkhd2umb_jvpmZhMvypZ_hOEzjXtkFdbwcmKQAaCpMy5pRbsgejGpulmnlY7xddveIe9xHhr9edW1BHqk6ZauTSESi2GFDFMsl1zjWiUsLYiCwyRhXH5zcRYOew3rxpUWtuohaItBBn_0PR1cNXkX5RcJ1zW_2t6wokyPuOPmdaZFiLsAqDPtdPz093f1674CT-9tXUrMRPggsC95dGEwlymlMW4FTz40pg8bnowNL2fAeNlkkp0KOEurozjzMwYmlxdI7l2DV7PJLMbvYKJ3NNu4CI_FmbaaDQAf0QAQtDqNtYLlXE59ljJV6iavJmHyYiu1B8IQd23g&h=7VHsTH0OV8BuQ89j0dNg7svs_SoofV649sZZGssOP4E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da783127-cdce-40b1-92dc-dac780389289?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629553065574&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=LqhC0PNgxodnCcTd_KJiwkbiqy5eETkRvDZvz5Axphrnx144KBJioh1SLNCIb-StBWLVOCP2_yLE8CU_B5K9E2kuxUZWzepxVpy-NIaZqYz3FwAI-l7-Rxf7x7OViJryx4SluWMdXyRVgJkEpakoxxmdIJiHTKTTdvWqYqEzjryS_2DaO5arwRVa_G8KFAnU4ydY_996eqbGT8x8pzNnv19kEzDk3rcJUm4j-aYpj2GUY_2vcd5d8wSL44KET0T0yxDM0RyQgDvXVw720x49-stLYdsg_DkqjUPVOynvg1Oe000Ifza0Y-ueT3hOYoHL0nT3XBjO4OERgnNrf1D1jg&h=ZuAnkj0Op3xvnh8HyumdgTA8C5oNi0k19usKFV4_H9M cache-control: - no-cache content-length: - - '1948' + - '1940' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:55:01 GMT + - Tue, 23 Dec 2025 05:02:35 GMT etag: - '"4"' expires: @@ -13634,7 +13730,7 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0ab01382-974e-40cb-83de-2a73084734e9 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/e9ec3493-80ad-41df-8a8c-86cad857e145 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-global-writes: @@ -13642,7 +13738,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: B04A0CA1388F4F0DA5CBF918FBC36C20 Ref B: TYO201151003036 Ref C: 2025-03-31T07:54:58Z' + - 'Ref A: ED9D91C3EF4F4A9F90E7888299711A70 Ref B: SYD03EDGE1912 Ref C: 2025-12-23T05:02:33Z' status: code: 200 message: '' @@ -13660,13 +13756,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7f42f6ed-16d8-49c5-bcda-c2afbfd7b5b9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790045016548167&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=JY73flYKikkhd2umb_jvpmZhMvypZ_hOEzjXtkFdbwcmKQAaCpMy5pRbsgejGpulmnlY7xddveIe9xHhr9edW1BHqk6ZauTSESi2GFDFMsl1zjWiUsLYiCwyRhXH5zcRYOew3rxpUWtuohaItBBn_0PR1cNXkX5RcJ1zW_2t6wokyPuOPmdaZFiLsAqDPtdPz093f1674CT-9tXUrMRPggsC95dGEwlymlMW4FTz40pg8bnowNL2fAeNlkkp0KOEurozjzMwYmlxdI7l2DV7PJLMbvYKJ3NNu4CI_FmbaaDQAf0QAQtDqNtYLlXE59ljJV6iavJmHyYiu1B8IQd23g&h=7VHsTH0OV8BuQ89j0dNg7svs_SoofV649sZZGssOP4E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da783127-cdce-40b1-92dc-dac780389289?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629553065574&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=LqhC0PNgxodnCcTd_KJiwkbiqy5eETkRvDZvz5Axphrnx144KBJioh1SLNCIb-StBWLVOCP2_yLE8CU_B5K9E2kuxUZWzepxVpy-NIaZqYz3FwAI-l7-Rxf7x7OViJryx4SluWMdXyRVgJkEpakoxxmdIJiHTKTTdvWqYqEzjryS_2DaO5arwRVa_G8KFAnU4ydY_996eqbGT8x8pzNnv19kEzDk3rcJUm4j-aYpj2GUY_2vcd5d8wSL44KET0T0yxDM0RyQgDvXVw720x49-stLYdsg_DkqjUPVOynvg1Oe000Ifza0Y-ueT3hOYoHL0nT3XBjO4OERgnNrf1D1jg&h=ZuAnkj0Op3xvnh8HyumdgTA8C5oNi0k19usKFV4_H9M response: body: - string: "{\r\n \"startTime\": \"2025-03-31T07:55:01.2204541+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7f42f6ed-16d8-49c5-bcda-c2afbfd7b5b9\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:02:35.2562429+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"da783127-cdce-40b1-92dc-dac780389289\"\r\n}" headers: cache-control: - no-cache @@ -13675,7 +13771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:55:01 GMT + - Tue, 23 Dec 2025 05:02:36 GMT expires: - '-1' pragma: @@ -13689,13 +13785,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/2c36c1f8-886a-4e91-a9f0-673ce76499cb + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/fb140d08-b95d-4410-8c9b-e808aa345639 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CF5361359F2A4FB6B5E78DEED42389A0 Ref B: TYO201151003036 Ref C: 2025-03-31T07:55:01Z' + - 'Ref A: 5A39B486BAB64A4CA533C875A7944484 Ref B: SYD03EDGE0918 Ref C: 2025-12-23T05:02:36Z' status: code: 200 message: '' @@ -13713,14 +13809,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7f42f6ed-16d8-49c5-bcda-c2afbfd7b5b9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638790045016548167&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=JY73flYKikkhd2umb_jvpmZhMvypZ_hOEzjXtkFdbwcmKQAaCpMy5pRbsgejGpulmnlY7xddveIe9xHhr9edW1BHqk6ZauTSESi2GFDFMsl1zjWiUsLYiCwyRhXH5zcRYOew3rxpUWtuohaItBBn_0PR1cNXkX5RcJ1zW_2t6wokyPuOPmdaZFiLsAqDPtdPz093f1674CT-9tXUrMRPggsC95dGEwlymlMW4FTz40pg8bnowNL2fAeNlkkp0KOEurozjzMwYmlxdI7l2DV7PJLMbvYKJ3NNu4CI_FmbaaDQAf0QAQtDqNtYLlXE59ljJV6iavJmHyYiu1B8IQd23g&h=7VHsTH0OV8BuQ89j0dNg7svs_SoofV649sZZGssOP4E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da783127-cdce-40b1-92dc-dac780389289?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629553065574&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=LqhC0PNgxodnCcTd_KJiwkbiqy5eETkRvDZvz5Axphrnx144KBJioh1SLNCIb-StBWLVOCP2_yLE8CU_B5K9E2kuxUZWzepxVpy-NIaZqYz3FwAI-l7-Rxf7x7OViJryx4SluWMdXyRVgJkEpakoxxmdIJiHTKTTdvWqYqEzjryS_2DaO5arwRVa_G8KFAnU4ydY_996eqbGT8x8pzNnv19kEzDk3rcJUm4j-aYpj2GUY_2vcd5d8wSL44KET0T0yxDM0RyQgDvXVw720x49-stLYdsg_DkqjUPVOynvg1Oe000Ifza0Y-ueT3hOYoHL0nT3XBjO4OERgnNrf1D1jg&h=ZuAnkj0Op3xvnh8HyumdgTA8C5oNi0k19usKFV4_H9M response: body: - string: "{\r\n \"startTime\": \"2025-03-31T07:55:01.2204541+00:00\",\r\n \"endTime\": - \"2025-03-31T07:55:05.9079833+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7f42f6ed-16d8-49c5-bcda-c2afbfd7b5b9\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:02:35.2562429+00:00\",\r\n \"endTime\": + \"2025-12-23T05:02:39.8188561+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"da783127-cdce-40b1-92dc-dac780389289\"\r\n}" headers: cache-control: - no-cache @@ -13729,7 +13825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:55:32 GMT + - Tue, 23 Dec 2025 05:03:06 GMT expires: - '-1' pragma: @@ -13743,13 +13839,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0b8d413d-e94a-41cc-a0ab-de81d5b72e0e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/f7450a87-e41a-404e-bab0-3e818ac2e27d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14992 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DC449222BC934FFC8B44C34A8B869874 Ref B: TYO201151003036 Ref C: 2025-03-31T07:55:32Z' + - 'Ref A: 04AD88D9D86E442384C00A1303819B0F Ref B: SYD03EDGE2112 Ref C: 2025-12-23T05:03:06Z' status: code: 200 message: '' @@ -13767,7 +13863,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 response: @@ -13775,16 +13871,16 @@ interactions: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13794,17 +13890,17 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '1941' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:55:32 GMT + - Tue, 23 Dec 2025 05:03:07 GMT etag: - '"4"' expires: @@ -13820,11 +13916,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8158597F09BE4C98BEC82D501763E6BC Ref B: TYO201151003036 Ref C: 2025-03-31T07:55:32Z' + - 'Ref A: 5FADC42924104289A9F0D03C6AE46012 Ref B: SYD03EDGE1921 Ref C: 2025-12-23T05:03:07Z' status: code: 200 message: '' @@ -13842,24 +13938,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b1138aed-e9a6-462b-881a-9385f8f4768f\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\",\r\n \"createOption\": + \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_OsDisk_1_802fa6fcaf4b42e89b431b6403a6398a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n @@ -13869,17 +13965,17 @@ interactions: \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-03-31T07:52:31.3601982+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '1949' + - '1941' content-type: - application/json; charset=utf-8 date: - - Mon, 31 Mar 2025 07:55:33 GMT + - Tue, 23 Dec 2025 05:03:08 GMT etag: - '"4"' expires: @@ -13895,11 +13991,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 9A94C3967DEB496A87F82C8412D1D46C Ref B: TYO201100115039 Ref C: 2025-03-31T07:55:33Z' + - 'Ref A: 1FA9E9D94CF34E199B88881EF9B77AC6 Ref B: SYD03EDGE0813 Ref C: 2025-12-23T05:03:08Z' status: code: 200 message: '' From 61de06646369bf1fc725d719145013f0818305a3 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 14:01:13 +0800 Subject: [PATCH 19/32] [Fix] - Fixed import show function --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index ad9ebd0404e..2257a6461fb 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -1387,7 +1387,7 @@ def get_instance_view(cmd, resource_group_name, vm_name, include_user_data=False def get_vm_by_aaz(cmd, resource_group_name, vm_name, expand=None): - from .aaz.latest.vm._show import Show + from .aaz.latest.vm import Show command_args = { 'resource_group': resource_group_name, 'vm_name': vm_name, From d99e490a41aecbe736a21c727ba48986b3a80a22 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 14:01:46 +0800 Subject: [PATCH 20/32] [Test] - Re-record test case --- .../recordings/test_vm_msi_no_scope.yaml | 6551 +++++++++-------- 1 file changed, 3530 insertions(+), 3021 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi_no_scope.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi_no_scope.yaml index d323d854901..d30ab20a453 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi_no_scope.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi_no_scope.yaml @@ -12,14 +12,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2024-08-26T08:53:05Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2025-12-23T05:52:38Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:06 GMT + - Tue, 23 Dec 2025 05:52:42 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0512D5B1C9B54A56A1E075F0E53C2C46 Ref B: TYO201100116011 Ref C: 2024-08-26T08:53:06Z' + - 'Ref A: BF92E48E10A74B71ACF9F80429DA4D61 Ref B: SG2AA1070306031 Ref C: 2025-12-23T05:52:42Z' status: code: 200 message: OK @@ -59,16 +59,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:07 GMT + - Tue, 23 Dec 2025 05:52:42 GMT expires: - '-1' pragma: @@ -88,12 +88,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/521c82c9-82d8-4d65-9d71-8a66e6a20620 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43946 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BB270C87E899476BA19AA936DD1EF686 Ref B: TYO201151003054 Ref C: 2024-08-26T08:53:07Z' + - 'Ref A: D4EC1AAE59FB438C9B08F84619B54654 Ref B: SG2AA1070301052 Ref C: 2025-12-23T05:52:43Z' status: code: 200 message: OK @@ -110,36 +112,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:07 GMT + - Tue, 23 Dec 2025 05:52:44 GMT expires: - '-1' pragma: @@ -150,12 +153,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/63fd52d9-93f8-4df1-8a70-a876139213a9 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73963 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BD95817A0EF74AFAB6FA594D673F523A Ref B: TYO201151002054 Ref C: 2024-08-26T08:53:08Z' + - 'Ref A: DD5E9C51E3C94790A55FF94486D79440 Ref B: SG2AA1040512060 Ref C: 2025-12-23T05:52:43Z' status: code: 200 message: OK @@ -172,14 +177,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -187,8 +192,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -196,8 +203,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -205,8 +214,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -214,8 +225,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -223,53 +236,138 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -277,9 +375,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -287,9 +386,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -297,41 +397,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -339,63 +437,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -403,18 +508,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -422,9 +529,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East - US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -432,9 +539,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -442,9 +549,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -452,9 +559,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -462,9 +569,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -472,18 +580,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -491,9 +601,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -501,44 +612,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -546,18 +662,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG","East US"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -565,225 +683,250 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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, - SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","East - US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central - US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","France Central","South + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South - Africa North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central - US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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":"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":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -791,34 +934,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -826,31 +974,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -858,40 +1004,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -899,15 +1044,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -915,9 +1055,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -925,15 +1066,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -941,18 +1077,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -960,15 +1097,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -976,9 +1107,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -986,9 +1118,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -996,9 +1129,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -1006,9 +1140,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1016,9 +1151,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1026,31 +1162,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1058,9 +1192,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1068,9 +1214,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1078,9 +1236,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -1088,235 +1247,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1324,15 +1509,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1340,18 +1520,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -1359,9 +1541,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1369,18 +1551,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1388,90 +1572,83 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkSecurityPerimeters","locations":["East - US 2 EUAP","Central US EUAP","West Central US","Jio India West","Jio India - Central","East US STG","North Central US","West US","West Europe","UAE Central","Germany + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","South Africa @@ -1480,19 +1657,38 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195259' + - '217556' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:10 GMT + - Tue, 23 Dec 2025 05:52:45 GMT expires: - '-1' pragma: @@ -1506,7 +1702,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 94C4ED9F335F40B29ABD06BA30E24AF4 Ref B: TYO201151004062 Ref C: 2024-08-26T08:53:09Z' + - 'Ref A: DAD771CDF53E45FF8D26854C2E89EBEF Ref B: SG2AA1040519042 Ref C: 2025-12-23T05:52:44Z' status: code: 200 message: OK @@ -1523,9 +1719,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -1541,7 +1737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:11 GMT + - Tue, 23 Dec 2025 05:52:46 GMT expires: - '-1' pragma: @@ -1555,7 +1751,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 431A41C6824C4B5A8D1FA286E92AC268 Ref B: TYO201100115007 Ref C: 2024-08-26T08:53:11Z' + - 'Ref A: 7520382CE9A14C3D86C08C0C38128E7D Ref B: SG2AA1040516036 Ref C: 2025-12-23T05:52:46Z' status: code: 404 message: Not Found @@ -1572,16 +1768,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -1590,7 +1786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:12 GMT + - Tue, 23 Dec 2025 05:52:46 GMT expires: - '-1' pragma: @@ -1601,12 +1797,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/739c8064-6c83-4d41-ac28-1eb5c9eab8a1 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43945 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 24EB0922B2A841BFA0FE271867E686AE Ref B: TYO201151005009 Ref C: 2024-08-26T08:53:12Z' + - 'Ref A: 45F8F82937224FAE8789B674626C7A0F Ref B: SG2AA1040516062 Ref C: 2025-12-23T05:52:46Z' status: code: 200 message: OK @@ -1623,36 +1821,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:12 GMT + - Tue, 23 Dec 2025 05:52:47 GMT expires: - '-1' pragma: @@ -1663,12 +1862,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e61e6f4d-b498-4538-baca-0c665003fdd6 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73962 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F4B47BBC61284FAD9DE8D78235515F26 Ref B: TYO201151004009 Ref C: 2024-08-26T08:53:12Z' + - 'Ref A: B04411A6546545E1BE7F6B839303C746 Ref B: SG2AA1040520034 Ref C: 2025-12-23T05:52:47Z' status: code: 200 message: OK @@ -1685,16 +1886,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -1703,7 +1904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:13 GMT + - Tue, 23 Dec 2025 05:52:48 GMT expires: - '-1' pragma: @@ -1714,12 +1915,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/edbcf13d-59a9-4da2-b415-1ad3fd1d6952 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43944 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B9243E46E7AF4C7A9AEE2CC48D4BA165 Ref B: TYO201151006031 Ref C: 2024-08-26T08:53:13Z' + - 'Ref A: FB428428FD7B4AEF84223E9106F5BDED Ref B: SG2AA1040515062 Ref C: 2025-12-23T05:52:48Z' status: code: 200 message: OK @@ -1736,36 +1939,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:13 GMT + - Tue, 23 Dec 2025 05:52:48 GMT expires: - '-1' pragma: @@ -1776,12 +1980,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e704f4ce-d679-4f38-b019-e0d9bf12f69c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73961 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 715C5D1D066843A3992C589EF3401C46 Ref B: TYO201100113027 Ref C: 2024-08-26T08:53:14Z' + - 'Ref A: 2C2F1A9C81B84B38B7AC3CEE5B413FBE Ref B: SG2AA1070302023 Ref C: 2025-12-23T05:52:49Z' status: code: 200 message: OK @@ -1798,14 +2004,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1813,8 +2019,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1822,8 +2030,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1831,8 +2041,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1840,8 +2052,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1849,53 +2063,138 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1903,9 +2202,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1913,9 +2213,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1923,41 +2224,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1965,63 +2264,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2029,18 +2335,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2048,9 +2356,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East - US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -2058,9 +2366,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2068,9 +2376,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2078,9 +2386,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2088,9 +2396,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2098,18 +2407,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2117,9 +2428,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2127,44 +2439,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2172,18 +2489,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG","East US"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -2191,225 +2510,250 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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, - SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","East - US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central - US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","France Central","South + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South - Africa North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central - US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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":"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":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -2417,34 +2761,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2452,31 +2801,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2484,40 +2831,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2525,15 +2871,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2541,9 +2882,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -2551,15 +2893,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -2567,18 +2904,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -2586,15 +2924,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2602,9 +2934,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2612,9 +2945,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2622,9 +2956,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -2632,9 +2967,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2642,9 +2978,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2652,31 +2989,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2684,9 +3019,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2694,9 +3041,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2704,9 +3063,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -2714,235 +3074,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2950,15 +3336,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2966,18 +3347,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -2985,9 +3368,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2995,18 +3378,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -3014,90 +3399,83 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkSecurityPerimeters","locations":["East - US 2 EUAP","Central US EUAP","West Central US","Jio India West","Jio India - Central","East US STG","North Central US","West US","West Europe","UAE Central","Germany + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","South Africa @@ -3106,19 +3484,38 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195259' + - '217556' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:16 GMT + - Tue, 23 Dec 2025 05:52:50 GMT expires: - '-1' pragma: @@ -3132,7 +3529,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 50DFDAA379ED4E948DD6CB214F43998F Ref B: TYO201100117009 Ref C: 2024-08-26T08:53:15Z' + - 'Ref A: 48892E3661A742608D001084CB379690 Ref B: SG2AA1040513054 Ref C: 2025-12-23T05:52:49Z' status: code: 200 message: OK @@ -3149,11 +3546,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2025-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1'' @@ -3167,7 +3564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:17 GMT + - Tue, 23 Dec 2025 05:52:51 GMT expires: - '-1' pragma: @@ -3181,7 +3578,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: A73AC1A4582F41199899DF1E5A1CE587 Ref B: TYO201100115033 Ref C: 2024-08-26T08:53:17Z' + - 'Ref A: CDA31A5F7710440EB00458AE01477BEC Ref B: SG2AA1040519034 Ref C: 2025-12-23T05:52:51Z' status: code: 404 message: Not Found @@ -3206,7 +3603,7 @@ interactions: "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -3225,30 +3622,30 @@ interactions: Connection: - keep-alive Content-Length: - - '2936' + - '2934' Content-Type: - application/json ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_USmJsK68QnXCRSdqZFHP7wb7tuaYND3A","name":"vm_deploy_USmJsK68QnXCRSdqZFHP7wb7tuaYND3A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15458313843234598607","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:53:21.9114542Z","duration":"PT0.0005922S","correlationId":"d912de45-7037-4b79-87bf-dfe99c0b05ea","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_TEjmqFVWKvk1rmpkvHDtD50CpEeQfUqg","name":"vm_deploy_TEjmqFVWKvk1rmpkvHDtD50CpEeQfUqg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6203564756010633591","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T05:52:54.7623076Z","duration":"PT0.0002859S","correlationId":"d2e81700-c399-4520-a016-60526c056b8f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_USmJsK68QnXCRSdqZFHP7wb7tuaYND3A/operationStatuses/08584769444854786456?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_TEjmqFVWKvk1rmpkvHDtD50CpEeQfUqg/operationStatuses/08584351377107078987?api-version=2024-11-01&t=639020659789809811&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=PnYF7byn7vOLHCvByU4qwoTdWXkMHOFOSgCMN4inXcOKyDh751AcOMoOV_-O6gqg13urAo8GQ40_r5ez5QI_2HZitSknuY7B3jYJCNXjwJzVQJFNzrH42mTP9-Neu61vRdoQJ1o69gs3IwMsIl5kBN5PMp8-lb6_9SJ2YQYxlAHaoipLoIF2-pm_x4F1jSNaJtidirewG0__WSzDGEY3ePdWC0_0PiwDbPhA3lVK0KZGf3VbfNrX0K2J8tPWyFDGOOSNfnxjAbAJIFz4S_QdfBSzDOMPmx71dwK14u6J61U0n4EwV8JGrRiy4GBYv_4sZKFW6Ii8REzMr0ULg_GnBQ&h=Hgx35hLgtjurBaL-W3y-X1Z6n_7qY4i0vGb66GAAi7w cache-control: - no-cache content-length: - - '2442' + - '2441' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:22 GMT + - Tue, 23 Dec 2025 05:52:58 GMT expires: - '-1' pragma: @@ -3260,13 +3657,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.560.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 8A1C1B5B0381408A990713FB9390358A Ref B: TYO201151005040 Ref C: 2024-08-26T08:53:18Z' + - 'Ref A: 862D0A927DD94AA8AEE24F91539CA461 Ref B: SG2AA1070306052 Ref C: 2025-12-23T05:52:52Z' status: code: 201 message: Created @@ -3283,11 +3680,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769444854786456?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351377107078987?api-version=2024-11-01&t=639020659789809811&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=PnYF7byn7vOLHCvByU4qwoTdWXkMHOFOSgCMN4inXcOKyDh751AcOMoOV_-O6gqg13urAo8GQ40_r5ez5QI_2HZitSknuY7B3jYJCNXjwJzVQJFNzrH42mTP9-Neu61vRdoQJ1o69gs3IwMsIl5kBN5PMp8-lb6_9SJ2YQYxlAHaoipLoIF2-pm_x4F1jSNaJtidirewG0__WSzDGEY3ePdWC0_0PiwDbPhA3lVK0KZGf3VbfNrX0K2J8tPWyFDGOOSNfnxjAbAJIFz4S_QdfBSzDOMPmx71dwK14u6J61U0n4EwV8JGrRiy4GBYv_4sZKFW6Ii8REzMr0ULg_GnBQ&h=Hgx35hLgtjurBaL-W3y-X1Z6n_7qY4i0vGb66GAAi7w response: body: string: '{"status":"Running"}' @@ -3299,7 +3696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:22 GMT + - Tue, 23 Dec 2025 05:52:59 GMT expires: - '-1' pragma: @@ -3313,7 +3710,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 65E358DB3CF549CAB95816A790632BB5 Ref B: TYO201151005040 Ref C: 2024-08-26T08:53:22Z' + - 'Ref A: 928308260C9949E09577B2548E05A18D Ref B: SG2AA1070305036 Ref C: 2025-12-23T05:52:59Z' status: code: 200 message: OK @@ -3330,11 +3727,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769444854786456?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351377107078987?api-version=2024-11-01&t=639020659789809811&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=PnYF7byn7vOLHCvByU4qwoTdWXkMHOFOSgCMN4inXcOKyDh751AcOMoOV_-O6gqg13urAo8GQ40_r5ez5QI_2HZitSknuY7B3jYJCNXjwJzVQJFNzrH42mTP9-Neu61vRdoQJ1o69gs3IwMsIl5kBN5PMp8-lb6_9SJ2YQYxlAHaoipLoIF2-pm_x4F1jSNaJtidirewG0__WSzDGEY3ePdWC0_0PiwDbPhA3lVK0KZGf3VbfNrX0K2J8tPWyFDGOOSNfnxjAbAJIFz4S_QdfBSzDOMPmx71dwK14u6J61U0n4EwV8JGrRiy4GBYv_4sZKFW6Ii8REzMr0ULg_GnBQ&h=Hgx35hLgtjurBaL-W3y-X1Z6n_7qY4i0vGb66GAAi7w response: body: string: '{"status":"Running"}' @@ -3346,7 +3743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:53:53 GMT + - Tue, 23 Dec 2025 05:53:31 GMT expires: - '-1' pragma: @@ -3360,7 +3757,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6AB324B43F2C4819A210E21C5617D231 Ref B: TYO201151005040 Ref C: 2024-08-26T08:53:53Z' + - 'Ref A: D437858714244068B5DB2493277E4115 Ref B: SG2AA1070305040 Ref C: 2025-12-23T05:53:30Z' status: code: 200 message: OK @@ -3377,11 +3774,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769444854786456?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351377107078987?api-version=2024-11-01&t=639020659789809811&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=PnYF7byn7vOLHCvByU4qwoTdWXkMHOFOSgCMN4inXcOKyDh751AcOMoOV_-O6gqg13urAo8GQ40_r5ez5QI_2HZitSknuY7B3jYJCNXjwJzVQJFNzrH42mTP9-Neu61vRdoQJ1o69gs3IwMsIl5kBN5PMp8-lb6_9SJ2YQYxlAHaoipLoIF2-pm_x4F1jSNaJtidirewG0__WSzDGEY3ePdWC0_0PiwDbPhA3lVK0KZGf3VbfNrX0K2J8tPWyFDGOOSNfnxjAbAJIFz4S_QdfBSzDOMPmx71dwK14u6J61U0n4EwV8JGrRiy4GBYv_4sZKFW6Ii8REzMr0ULg_GnBQ&h=Hgx35hLgtjurBaL-W3y-X1Z6n_7qY4i0vGb66GAAi7w response: body: string: '{"status":"Succeeded"}' @@ -3393,7 +3790,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:24 GMT + - Tue, 23 Dec 2025 05:54:01 GMT expires: - '-1' pragma: @@ -3407,7 +3804,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8F02013C8DC045A5B1DC61380FD8C03F Ref B: TYO201151005040 Ref C: 2024-08-26T08:54:23Z' + - 'Ref A: DF2D35FC9FC44802A987424686A06BD0 Ref B: SG2AA1070304029 Ref C: 2025-12-23T05:54:01Z' status: code: 200 message: OK @@ -3424,23 +3821,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_USmJsK68QnXCRSdqZFHP7wb7tuaYND3A","name":"vm_deploy_USmJsK68QnXCRSdqZFHP7wb7tuaYND3A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15458313843234598607","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:54:08.5332781Z","duration":"PT46.6224161S","correlationId":"d912de45-7037-4b79-87bf-dfe99c0b05ea","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_TEjmqFVWKvk1rmpkvHDtD50CpEeQfUqg","name":"vm_deploy_TEjmqFVWKvk1rmpkvHDtD50CpEeQfUqg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6203564756010633591","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:53:33.7294981Z","duration":"PT38.9671905S","correlationId":"d2e81700-c399-4520-a016-60526c056b8f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' headers: cache-control: - no-cache content-length: - - '3265' + - '3264' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:24 GMT + - Tue, 23 Dec 2025 05:54:01 GMT expires: - '-1' pragma: @@ -3454,7 +3851,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: AA4C472D072A41FC95C9CFDE15656702 Ref B: TYO201151005040 Ref C: 2024-08-26T08:54:24Z' + - 'Ref A: 242F11A006F946329F4C67110B7DCE3D Ref B: SG2AA1070306031 Ref C: 2025-12-23T05:54:02Z' status: code: 200 message: OK @@ -3471,69 +3868,65 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"790c2584-0d2f-49e4-83e0-f9b9b924df8c\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"\ - Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\ - \n \"vmId\": \"21bdfd28-81b1-4d6a-a60e-ef405f7a2f00\",\r\n \"storageProfile\"\ - : {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\ - \n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\ - \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm1_OsDisk_1_8916f6368b9546b493cfc0ea57ebccf2\",\r\n\ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_8916f6368b9546b493cfc0ea57ebccf2\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"admin123\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\"\ - : {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\"\ - : \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n\ - \ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \ - \ \"osName\": \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"\ - vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\"\ - : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"\ - Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \ - \ \"time\": \"2024-08-26T08:54:13+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\ - \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_8916f6368b9546b493cfc0ea57ebccf2\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2024-08-26T08:53:36.4707687+00:00\"\r\n }\r\ - \n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2024-08-26T08:54:04.0493735+00:00\"\ - \r\n },\r\n {\r\n \"code\": \"PowerState/running\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\ - \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2024-08-26T08:53:33.330088+00:00\"\ - \r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"02c9d4da-e27e-4861-81c7-1a7d33e35d27\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"eec5e07d-60b8-447d-be24-eeb775a2483a\",\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_disk1_c64e5f618dad4c918388dbfb1c9e47b6\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm1_disk1_c64e5f618dad4c918388dbfb1c9e47b6\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"admin123\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": + {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": + \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2025-12-23T05:53:35+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_c64e5f618dad4c918388dbfb1c9e47b6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2025-12-23T05:53:19.9699984+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2025-12-23T05:53:27.8451123+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T05:53:17.43866+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3428' + - '3416' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:25 GMT + - Tue, 23 Dec 2025 05:54:03 GMT expires: - '-1' pragma: @@ -3544,12 +3937,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1660AE743FD445299D012AF30746DAA0 Ref B: TYO201100116017 Ref C: 2024-08-26T08:54:25Z' + - 'Ref A: CEB84C0CDC0E4767974FA475CCEE3191 Ref B: SG2AA1070301054 Ref C: 2025-12-23T05:54:02Z' status: code: 200 message: '' @@ -3566,50 +3961,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - ,\r\n \"etag\": \"W/\\\"c28b04a7-ecf0-476b-b82e-4c04c048c2a1\\\"\",\r\n \ - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"10c189bd-799e-46c0-b24c-69fbaeaf33fd\",\r\n \ - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - ,\r\n \"etag\": \"W/\\\"c28b04a7-ecf0-476b-b82e-4c04c048c2a1\\\"\"\ - ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ - : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ - \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ - : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ - \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qyfonyjohuzupedhcjublqhsab.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-36-79-5A\",\r\n \"vnetEncryptionSupported\"\ - : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\ - \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ - \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ - \n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"\ - auxiliaryMode\": \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ - ,\r\n \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"ef6f56f6-8f69-4a16-bd64-cbd50f7aaef7\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ffa5d5f4-0d8a-4a02-a014-aeb476018a28","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"ef6f56f6-8f69-4a16-bd64-cbd50f7aaef7\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"1eioqftaz0nezouomrwmvv045b.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-5C-5D-10","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2439' + - '1994' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:25 GMT + - Tue, 23 Dec 2025 05:54:04 GMT etag: - - W/"c28b04a7-ecf0-476b-b82e-4c04c048c2a1" + - W/"ef6f56f6-8f69-4a16-bd64-cbd50f7aaef7" expires: - '-1' pragma: @@ -3621,11 +3991,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c9fa343-48a0-46a3-86f5-0c7850f2266e + - 52a01597-b169-49d2-84f0-5e63d68ef608 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 41B3979F00D64987BEA85F49AEE4734D Ref B: TYO201151006052 Ref C: 2024-08-26T08:54:26Z' + - 'Ref A: AB52483FF17D4702838344B1B6D98F48 Ref B: SG2AA1070306060 Ref C: 2025-12-23T05:54:03Z' status: code: 200 message: OK @@ -3642,35 +4012,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"83d78ded-9ad8-49be-9f5b-65edf1285493\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ffbc9ab-b99f-486c-9739-0a8cb803d0c6\"\ - ,\r\n \"ipAddress\": \"104.210.33.22\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ - \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"147ecc5b-e8f2-4be8-86f2-de3776aee982\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"45b0c724-2223-4a62-bd51-bd68641e0e32","ipAddress":"52.225.20.234","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '928' + - '793' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:26 GMT + - Tue, 23 Dec 2025 05:54:04 GMT etag: - - W/"83d78ded-9ad8-49be-9f5b-65edf1285493" + - W/"147ecc5b-e8f2-4be8-86f2-de3776aee982" expires: - '-1' pragma: @@ -3682,11 +4042,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fba89b8a-76c4-4051-a7cc-84e3c9c4ee77 + - a691b416-05a2-4bf7-810e-2b0ed1007f4b x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 94D3E5F5D5054357B06C3536E88D66F5 Ref B: TYO201100114017 Ref C: 2024-08-26T08:54:26Z' + - 'Ref A: 96E45F7D2C094D38BED8A0166DCE1528 Ref B: SG2AA1040512029 Ref C: 2025-12-23T05:54:04Z' status: code: 200 message: OK @@ -3704,30 +4064,23 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"173f34a1-37dc-4c87-a4cb-5560a4afe97a\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\ - \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\ - \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ - \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"8486d871-fba2-492c-9215-62b80f80d66d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '874' + - '730' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:27 GMT + - Tue, 23 Dec 2025 05:54:07 GMT etag: - - W/"173f34a1-37dc-4c87-a4cb-5560a4afe97a" + - W/"8486d871-fba2-492c-9215-62b80f80d66d" expires: - '-1' pragma: @@ -3739,11 +4092,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5703bc0c-6aab-4f43-8c18-a2fafa56078e + - 64b8ffa6-c35a-4e23-a545-e756186b31a8 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/b2b23370-c410-43c1-99af-465673676693 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 46601FE65C524E8D8416E51EDE044A2F Ref B: TYO201100115023 Ref C: 2024-08-26T08:54:27Z' + - 'Ref A: 85484D4DBE934667BB290D6C5470658C Ref B: SG2AA1070304054 Ref C: 2025-12-23T05:54:07Z' status: code: 200 message: OK @@ -3768,33 +4123,25 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"5bd480f7-679f-47d1-9ea0-6ee8a67fd05c\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ - addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\ - \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\ - ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n}" + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"36b8af78-fc91-4523-bdb9-59a228fe92d9\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e7268e17-6f65-4515-a256-9a91ef56525d?api-version=2024-01-01&t=638602592688102496&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=WqHk4vgud8djGa4gqNjVFzlAqrr-0hFChUb6PS79CYb3hlLAchbvBWttuUVQzNp5AoLBtWUWBvsTyZvdJQsjDZd0_aIhWmxF7e3MlUVuZPDaNmnlRQul26iBqrtj07o25T3LTcNgcEMknAIRQo6GCwvFYLg1ElD2iIuR4WZ-ZvHCiHDHjy83Ym_G0U-1Hf4-LcFbFVM_oH7LSrT0iTm-Sm0u46zibMp8cuaQs56Tm7qUexBZgT8t6PGVEZgiyjISsBFVCdG6T1MGNsKVNMjxt9jPgaUkg2O3DcafW9c9G-wo6aI4vw2AO0Qt9kg8HuOnaw8jcCqr_Lu-eAkqaRtO6g&h=YDJA82mJm6swPlZYL-yQLLsI1ad9PfqOLiUuWddqgKI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e312b8d-5574-4c3e-af38-4e2e52afc55c?api-version=2024-07-01&t=639020660488631471&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=qwSbh9ybKRot3BQWSwERS2u0D-Cjuh8OEbrVpaTzZy0CbzxNzxWNPdYqsYwSBWPXs-3crslOYGKZuR8aC5p9vzhUMM40A1JfKUbydZIFCLDhlaUX7QlgFqhKIgFvqHx9FcL8Y9pZT6oEaW3iYHblPatjD4xc-4gqSHhtSmeGPRVr0Not7A1itQtqcWDW7u8RQ1y_vHW-xwHMhx3NlLCxkgcFFDbdRqOo6DDXtdqg6rBYvJ2roMUnUcZoipgIkMJU-tdvk28rJhdORi5bh83Zmw3oxKiRw75_-Ox_xF3yHb2vM1xCZu00q8QSP6hnDEbJxxHfn8dCphumOEhcJfcLZg&h=yog9Atr6_WXuHySCaUrC1_8ULtkr86ys4z6h6xP6648 cache-control: - no-cache content-length: - - '862' + - '711' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:28 GMT + - Tue, 23 Dec 2025 05:54:08 GMT expires: - '-1' pragma: @@ -3806,13 +4153,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d25827c0-7261-41bc-ac1e-3419dfd9b63e + - af2ba68d-9545-49a8-9806-6d086fee8dab + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/89d27a60-b755-431d-ac0c-7da4b0115b2b x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: D37BB8E960874501BB4353CABBFCF84D Ref B: TYO201100115023 Ref C: 2024-08-26T08:54:28Z' + - 'Ref A: AA51E33112D54F2EB93C6E3BBEA7A47A Ref B: SG2AA1040519034 Ref C: 2025-12-23T05:54:08Z' status: code: 200 message: OK @@ -3830,21 +4179,21 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e7268e17-6f65-4515-a256-9a91ef56525d?api-version=2024-01-01&t=638602592688102496&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=WqHk4vgud8djGa4gqNjVFzlAqrr-0hFChUb6PS79CYb3hlLAchbvBWttuUVQzNp5AoLBtWUWBvsTyZvdJQsjDZd0_aIhWmxF7e3MlUVuZPDaNmnlRQul26iBqrtj07o25T3LTcNgcEMknAIRQo6GCwvFYLg1ElD2iIuR4WZ-ZvHCiHDHjy83Ym_G0U-1Hf4-LcFbFVM_oH7LSrT0iTm-Sm0u46zibMp8cuaQs56Tm7qUexBZgT8t6PGVEZgiyjISsBFVCdG6T1MGNsKVNMjxt9jPgaUkg2O3DcafW9c9G-wo6aI4vw2AO0Qt9kg8HuOnaw8jcCqr_Lu-eAkqaRtO6g&h=YDJA82mJm6swPlZYL-yQLLsI1ad9PfqOLiUuWddqgKI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e312b8d-5574-4c3e-af38-4e2e52afc55c?api-version=2024-07-01&t=639020660488631471&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=qwSbh9ybKRot3BQWSwERS2u0D-Cjuh8OEbrVpaTzZy0CbzxNzxWNPdYqsYwSBWPXs-3crslOYGKZuR8aC5p9vzhUMM40A1JfKUbydZIFCLDhlaUX7QlgFqhKIgFvqHx9FcL8Y9pZT6oEaW3iYHblPatjD4xc-4gqSHhtSmeGPRVr0Not7A1itQtqcWDW7u8RQ1y_vHW-xwHMhx3NlLCxkgcFFDbdRqOo6DDXtdqg6rBYvJ2roMUnUcZoipgIkMJU-tdvk28rJhdORi5bh83Zmw3oxKiRw75_-Ox_xF3yHb2vM1xCZu00q8QSP6hnDEbJxxHfn8dCphumOEhcJfcLZg&h=yog9Atr6_WXuHySCaUrC1_8ULtkr86ys4z6h6xP6648 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:28 GMT + - Tue, 23 Dec 2025 05:54:08 GMT expires: - '-1' pragma: @@ -3856,11 +4205,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c0f4a634-ace5-4e93-a103-490de73a3b86 + - 0753ff3f-5287-46c4-bb82-54d44bdad403 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/4022fff8-411f-47f2-93fd-dee4f230fbbc x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F82E969E10EB4DB8ABF589F43AA72F9D Ref B: TYO201100115023 Ref C: 2024-08-26T08:54:28Z' + - 'Ref A: 4E98EF7287C94F3CB1670D5A0406D3D8 Ref B: SG2AA1070306052 Ref C: 2025-12-23T05:54:09Z' status: code: 200 message: OK @@ -3878,31 +4229,23 @@ interactions: ParameterSetName: - -g --vnet-name -n --default-outbound-access User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"f0eb92c1-9108-4bd0-a846-96f124cc8a7b\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\ - \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\ - \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\ - ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n}" + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"cf996d68-be11-4657-99bb-b11bdbda0a2c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '911' + - '760' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:28 GMT + - Tue, 23 Dec 2025 05:54:09 GMT etag: - - W/"f0eb92c1-9108-4bd0-a846-96f124cc8a7b" + - W/"cf996d68-be11-4657-99bb-b11bdbda0a2c" expires: - '-1' pragma: @@ -3914,11 +4257,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11c5f16f-0925-482a-b057-84d4cc680f54 + - 41dc8e36-ff97-434f-9290-7fb33e7ef199 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/86d257f1-8841-4037-b058-8e6eb128879f x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: C65F17A8FA5D4B8082F697200A615CB9 Ref B: TYO201100115023 Ref C: 2024-08-26T08:54:29Z' + - 'Ref A: ED52C8DCCE064E9096AAEC41F1ECB652 Ref B: SG2AA1040515036 Ref C: 2025-12-23T05:54:09Z' status: code: 200 message: OK @@ -3935,23 +4280,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2024-08-26T08:53:05Z","module":"vm","DateCreated":"2024-08-26T08:53:08Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2025-12-23T05:52:38Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '452' + - '376' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:30 GMT + - Tue, 23 Dec 2025 05:54:10 GMT expires: - '-1' pragma: @@ -3963,9 +4308,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 663C591A620A49DA9C6D0876E37700EB Ref B: TYO201151004011 Ref C: 2024-08-26T08:54:30Z' + - 'Ref A: 75FDE29885794BE390B63A3572D51579 Ref B: SG2AA1040520062 Ref C: 2025-12-23T05:54:11Z' status: code: 200 message: OK @@ -3982,16 +4327,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -4000,7 +4345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:30 GMT + - Tue, 23 Dec 2025 05:54:11 GMT expires: - '-1' pragma: @@ -4011,12 +4356,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/c8c840bb-a0e8-4b65-8355-e29fa0dc84e5 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43942 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 64D54CD2C1CC4781A5369BDF59429FD4 Ref B: TYO201100113049 Ref C: 2024-08-26T08:54:30Z' + - 'Ref A: 00FDA16F57E2409895A634ED31AD525A Ref B: SG2AA1040517025 Ref C: 2025-12-23T05:54:11Z' status: code: 200 message: OK @@ -4033,36 +4380,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:31 GMT + - Tue, 23 Dec 2025 05:54:12 GMT expires: - '-1' pragma: @@ -4073,12 +4421,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/7ee037f4-3a6c-4ae4-8bc4-533666364b85 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73959 + - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: D5398946C8D74764BEB25FE66C618172 Ref B: TYO201151002062 Ref C: 2024-08-26T08:54:31Z' + - 'Ref A: D89A7E69148C40A1B39779E176569C4D Ref B: SG2AA1040513031 Ref C: 2025-12-23T05:54:12Z' status: code: 200 message: OK @@ -4095,44 +4445,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"f0eb92c1-9108-4bd0-a846-96f124cc8a7b\\\"\",\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e1e60a86-3d2e-4733-9067-126815c0f201\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ - \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ - : [\r\n {\r\n \"name\": \"subnet1\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"f0eb92c1-9108-4bd0-a846-96f124cc8a7b\\\"\ - \",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ - \ \"ipConfigurations\": [\r\n {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\ - \r\n }\r\n ],\r\n \"delegations\"\ - : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\ - \n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \ - \ \"defaultOutboundAccess\": false\r\n },\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \ - \ \"enableDdosProtection\": false\r\n }\r\n }\r\n ]\r\n}" + string: '{"value":[{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"cf996d68-be11-4657-99bb-b11bdbda0a2c\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"16e810d9-ce60-4c9a-ba8e-646ccad75ef9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"cf996d68-be11-4657-99bb-b11bdbda0a2c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' headers: cache-control: - no-cache content-length: - - '1811' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:32 GMT + - Tue, 23 Dec 2025 05:54:13 GMT expires: - '-1' pragma: @@ -4144,11 +4473,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 33e62647-e359-4d8c-926a-aaf0549e7967 + - 96862fc2-2096-4aa7-8dd0-1a6ebbea1378 + x-ms-original-request-ids: + - 5d37be15-e2e8-46a6-9ceb-73f648229bfb x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6DF61D5F8A654A1FB19A0795C60C057D Ref B: TYO201151001036 Ref C: 2024-08-26T08:54:32Z' + - 'Ref A: BBD707C9A91448D5AD17AC20BEA26A3D Ref B: SG2AA1040517054 Ref C: 2025-12-23T05:54:13Z' status: code: 200 message: OK @@ -4165,16 +4496,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -4183,7 +4514,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:33 GMT + - Tue, 23 Dec 2025 05:54:14 GMT expires: - '-1' pragma: @@ -4194,12 +4525,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/7aae76ed-0569-48e9-a3bb-d9ca733012d4 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43941 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 79D38615DE5646AFAFD19C3BF3C81F96 Ref B: TYO201151006025 Ref C: 2024-08-26T08:54:32Z' + - 'Ref A: 0B5D29BD18DA41F093E6DC28D43B55FE Ref B: SG2AA1040513036 Ref C: 2025-12-23T05:54:14Z' status: code: 200 message: OK @@ -4216,36 +4549,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:33 GMT + - Tue, 23 Dec 2025 05:54:14 GMT expires: - '-1' pragma: @@ -4256,12 +4590,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/4b424201-5201-4e26-b8a4-64ed32871568 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73958 + - Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: CB32D5BAB872415D863C2E7A3D6F12D7 Ref B: TYO201100114045 Ref C: 2024-08-26T08:54:33Z' + - 'Ref A: 3D5FEF6FD0E44148B7EB14B5E5BE93CF Ref B: SG2AA1040520034 Ref C: 2025-12-23T05:54:15Z' status: code: 200 message: OK @@ -4278,16 +4614,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -4296,7 +4632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:34 GMT + - Tue, 23 Dec 2025 05:54:16 GMT expires: - '-1' pragma: @@ -4307,12 +4643,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/deb7b7f5-e69d-4391-b2a8-823340514620 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43940 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D2A986C0755144F7BC4DFB61F32776D0 Ref B: TYO201100117051 Ref C: 2024-08-26T08:54:34Z' + - 'Ref A: 87A9618045954FF5B94CC7B2C1976B93 Ref B: SG2AA1070304060 Ref C: 2025-12-23T05:54:15Z' status: code: 200 message: OK @@ -4329,36 +4667,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:35 GMT + - Tue, 23 Dec 2025 05:54:16 GMT expires: - '-1' pragma: @@ -4369,12 +4708,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/ebef7848-1419-4aa2-893f-588d3b8274a6 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73957 + - Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73988 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 475F81D9DAFC471EB4E56D8815E7DA8F Ref B: TYO201151005036 Ref C: 2024-08-26T08:54:35Z' + - 'Ref A: 156E5ECC256A4F98A12847546C3B7C26 Ref B: SG2AA1070306036 Ref C: 2025-12-23T05:54:16Z' status: code: 200 message: OK @@ -4415,14 +4756,14 @@ interactions: null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss1f0d7", "adminUsername": + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss16da8", "adminUsername": "admin123", "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": - {"networkInterfaceConfigurations": [{"name": "vmss1f0d7Nic", "properties": {"ipConfigurations": - [{"name": "vmss1f0d7IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, + {"networkInterfaceConfigurations": [{"name": "vmss16da8Nic", "properties": {"ipConfigurations": + [{"name": "vmss16da8IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}], "networkSecurityGroup": {"id": "[resourceId(''Microsoft.Network/networkSecurityGroups'', ''vmss1NSG'')]"}, "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": - {"name": "Standard_DS1_v2", "capacity": 2}, "identity": {"type": "SystemAssigned"}}], + {"name": "Standard_B1ls", "capacity": 2}, "identity": {"type": "SystemAssigned"}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'', ''vmss1''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}}, "parameters": {"adminPassword": {"value": "PasswordPassword1!"}}, "mode": "incremental"}}' @@ -4436,22 +4777,22 @@ interactions: Connection: - keep-alive Content-Length: - - '4508' + - '4506' Content-Type: - application/json ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_OnOlKCmKVZeCL7YGI0KTAv0Dq6Z2gDM0","name":"vmss_deploy_OnOlKCmKVZeCL7YGI0KTAv0Dq6Z2gDM0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8698267441347598526","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:54:42.2404279Z","duration":"PT0.0004266S","correlationId":"3aa3f15f-5c59-43f6-9543-e9ca78100133","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_5tbxJo6ay7evTqmCEUasW8YFHK2MoRPv","name":"vmss_deploy_5tbxJo6ay7evTqmCEUasW8YFHK2MoRPv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5464822866539565332","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T05:54:24.6851217Z","duration":"PT0.0001454S","correlationId":"aee37064-a78e-4a6b-9641-3b55da21d6fd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_OnOlKCmKVZeCL7YGI0KTAv0Dq6Z2gDM0/operationStatuses/08584769444053718947?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_5tbxJo6ay7evTqmCEUasW8YFHK2MoRPv/operationStatuses/08584351376207890981?api-version=2024-11-01&t=639020660658726138&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=AaHcaIs4nrsLPfufIak2_9eiyIiS3S4wTU_bP3CSOGombO8hyKuCwHhEgW9SUUSzfcXZQA31glOWJhKW6J5m6E7PKnf9ZxMTNhIrIGqzcEXvvFFazZkiGVL7Qg5_yBDbnLUdtPcq5qGQHaavJ2N-pEKrUpusFiszsz8RUhNg7l2Wnamthk7H8-iasriP0bB8tEFl16WmF644f7-nK61ATCNJ0FdLbl4vjjy75BNQZoQ7cCUAwSHE-udv4gsKvP4Rd8g2QCsMisgj_hSLLcgtHoc6ZMy3bj6psz-Vb4HjiwgoE65PnjN77KmkbRrhmr9XhDXhuwHN55Z3ClKzvd762g&h=57q65ydH0uRoq-YsbbYbZBxIX8rVdgvAMGB809EguTo cache-control: - no-cache content-length: @@ -4459,7 +4800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:43 GMT + - Tue, 23 Dec 2025 05:54:25 GMT expires: - '-1' pragma: @@ -4471,13 +4812,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.560.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 5A664FA51FAB4FE8BE68DB3C38EBE0AA Ref B: TYO201100113033 Ref C: 2024-08-26T08:54:36Z' + - 'Ref A: D69D2F9466304C558CE425EB62AB61F6 Ref B: SG2AA1070306031 Ref C: 2025-12-23T05:54:17Z' status: code: 201 message: Created @@ -4494,11 +4835,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769444053718947?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351376207890981?api-version=2024-11-01&t=639020660658726138&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=AaHcaIs4nrsLPfufIak2_9eiyIiS3S4wTU_bP3CSOGombO8hyKuCwHhEgW9SUUSzfcXZQA31glOWJhKW6J5m6E7PKnf9ZxMTNhIrIGqzcEXvvFFazZkiGVL7Qg5_yBDbnLUdtPcq5qGQHaavJ2N-pEKrUpusFiszsz8RUhNg7l2Wnamthk7H8-iasriP0bB8tEFl16WmF644f7-nK61ATCNJ0FdLbl4vjjy75BNQZoQ7cCUAwSHE-udv4gsKvP4Rd8g2QCsMisgj_hSLLcgtHoc6ZMy3bj6psz-Vb4HjiwgoE65PnjN77KmkbRrhmr9XhDXhuwHN55Z3ClKzvd762g&h=57q65ydH0uRoq-YsbbYbZBxIX8rVdgvAMGB809EguTo response: body: string: '{"status":"Running"}' @@ -4510,7 +4851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:54:44 GMT + - Tue, 23 Dec 2025 05:54:26 GMT expires: - '-1' pragma: @@ -4524,7 +4865,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7A21F7BCA1BE4EF295B02617BD783AF2 Ref B: TYO201100113033 Ref C: 2024-08-26T08:54:44Z' + - 'Ref A: FFB87216B63D41B3914B6AC687A42AD2 Ref B: SG2AA1040512025 Ref C: 2025-12-23T05:54:26Z' status: code: 200 message: OK @@ -4541,11 +4882,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769444053718947?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351376207890981?api-version=2024-11-01&t=639020660658726138&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=AaHcaIs4nrsLPfufIak2_9eiyIiS3S4wTU_bP3CSOGombO8hyKuCwHhEgW9SUUSzfcXZQA31glOWJhKW6J5m6E7PKnf9ZxMTNhIrIGqzcEXvvFFazZkiGVL7Qg5_yBDbnLUdtPcq5qGQHaavJ2N-pEKrUpusFiszsz8RUhNg7l2Wnamthk7H8-iasriP0bB8tEFl16WmF644f7-nK61ATCNJ0FdLbl4vjjy75BNQZoQ7cCUAwSHE-udv4gsKvP4Rd8g2QCsMisgj_hSLLcgtHoc6ZMy3bj6psz-Vb4HjiwgoE65PnjN77KmkbRrhmr9XhDXhuwHN55Z3ClKzvd762g&h=57q65ydH0uRoq-YsbbYbZBxIX8rVdgvAMGB809EguTo response: body: string: '{"status":"Running"}' @@ -4557,7 +4898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:15 GMT + - Tue, 23 Dec 2025 05:54:56 GMT expires: - '-1' pragma: @@ -4571,7 +4912,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A96B8CD7A23B4860AB9CF9C0E06900C1 Ref B: TYO201100113033 Ref C: 2024-08-26T08:55:15Z' + - 'Ref A: 6A19713EEA02466585A3A321E08031C9 Ref B: SG2AA1070301042 Ref C: 2025-12-23T05:54:57Z' status: code: 200 message: OK @@ -4588,11 +4929,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769444053718947?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351376207890981?api-version=2024-11-01&t=639020660658726138&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=AaHcaIs4nrsLPfufIak2_9eiyIiS3S4wTU_bP3CSOGombO8hyKuCwHhEgW9SUUSzfcXZQA31glOWJhKW6J5m6E7PKnf9ZxMTNhIrIGqzcEXvvFFazZkiGVL7Qg5_yBDbnLUdtPcq5qGQHaavJ2N-pEKrUpusFiszsz8RUhNg7l2Wnamthk7H8-iasriP0bB8tEFl16WmF644f7-nK61ATCNJ0FdLbl4vjjy75BNQZoQ7cCUAwSHE-udv4gsKvP4Rd8g2QCsMisgj_hSLLcgtHoc6ZMy3bj6psz-Vb4HjiwgoE65PnjN77KmkbRrhmr9XhDXhuwHN55Z3ClKzvd762g&h=57q65ydH0uRoq-YsbbYbZBxIX8rVdgvAMGB809EguTo response: body: string: '{"status":"Succeeded"}' @@ -4604,7 +4945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:46 GMT + - Tue, 23 Dec 2025 05:55:27 GMT expires: - '-1' pragma: @@ -4618,7 +4959,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A168521A0586412CB45486294D0CE734 Ref B: TYO201100113033 Ref C: 2024-08-26T08:55:46Z' + - 'Ref A: 43A82A86F45D41A699C299D7B9747874 Ref B: SG2AA1040515034 Ref C: 2025-12-23T05:55:27Z' status: code: 200 message: OK @@ -4635,14 +4976,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_OnOlKCmKVZeCL7YGI0KTAv0Dq6Z2gDM0","name":"vmss_deploy_OnOlKCmKVZeCL7YGI0KTAv0Dq6Z2gDM0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8698267441347598526","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:55:31.5020127Z","duration":"PT49.2620114S","correlationId":"3aa3f15f-5c59-43f6-9543-e9ca78100133","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1f0d7","adminUsername":"admin123","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1f0d7Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1f0d7IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}]}}]},"timeCreated":"2024-08-26T08:54:52.9252833+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"ee7af16b-8a1f-402a-8b15-8888dc37764f","platformFaultDomainCount":5,"timeCreated":"2024-08-26T08:54:52.9252833+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_5tbxJo6ay7evTqmCEUasW8YFHK2MoRPv","name":"vmss_deploy_5tbxJo6ay7evTqmCEUasW8YFHK2MoRPv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5464822866539565332","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:55:11.2480595Z","duration":"PT46.5629378S","correlationId":"aee37064-a78e-4a6b-9641-3b55da21d6fd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss16da8","adminUsername":"admin123","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss16da8Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss16da8IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}]}}]},"timeCreated":"2025-12-23T05:54:31.8772545+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"dbaf3258-e114-4ef2-bc6f-8ca7d8ea6674","platformFaultDomainCount":5,"timeCreated":"2025-12-23T05:54:31.8772545+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache @@ -4651,7 +4992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:47 GMT + - Tue, 23 Dec 2025 05:55:29 GMT expires: - '-1' pragma: @@ -4665,7 +5006,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CCA0D5FB9DCE4192B7D6E33E829BA9C5 Ref B: TYO201100113033 Ref C: 2024-08-26T08:55:47Z' + - 'Ref A: AA1EA11ED6364A82A1821B1653BB82D8 Ref B: SG2AA1070306040 Ref C: 2025-12-23T05:55:27Z' status: code: 200 message: OK @@ -4682,59 +5023,50 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --admin-username --admin-password --orchestration-mode - --lb-sku + --lb-sku --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vmss1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"f71eb4f0-57e9-4f95-8a97-ac0b407f7d35\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\ - ,\r\n \"capacity\": 2\r\n },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"properties\"\ - : {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\ - Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \ - \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \ - \ \"computerNamePrefix\": \"vmss1f0d7\",\r\n \"adminUsername\"\ - : \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \ - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\"\ - : {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n\ - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ - : {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1f0d7Nic\",\"properties\"\ - :{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\"\ - :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"vmss1f0d7IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:54:52.9252833+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"ee7af16b-8a1f-402a-8b15-8888dc37764f\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:54:52.9252833+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"vmss1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"5cf679e6-dfd8-4f49-8aaa-4a8992956821\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Standard_B1ls\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n + \ },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss16da8\",\r\n + \ \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": + true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n + \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n + \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16da8Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16da8IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:54:31.8772545+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"dbaf3258-e114-4ef2-bc6f-8ca7d8ea6674\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2025-12-23T05:54:31.8772545+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2798' + - '2796' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:49 GMT + - Tue, 23 Dec 2025 05:55:29 GMT etag: - - '"2"' + - '"3"' expires: - '-1' pragma: @@ -4745,12 +5077,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2391,Microsoft.Compute/GetVMScaleSetResource;32 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2395,Microsoft.Compute/GetVMScaleSetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4C33161642BD49FD96D601BACCF78F3A Ref B: TYO201151006060 Ref C: 2024-08-26T08:55:49Z' + - 'Ref A: 9BC1A0DB37AB401BBA33FE48105ADDC1 Ref B: SG2AA1070301062 Ref C: 2025-12-23T05:55:30Z' status: code: 200 message: '' @@ -4767,22 +5101,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2024-08-26T08:53:05Z","module":"vm","DateCreated":"2024-08-26T08:53:08Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2025-12-23T05:52:38Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '452' + - '376' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:48 GMT + - Tue, 23 Dec 2025 05:55:31 GMT expires: - '-1' pragma: @@ -4796,7 +5131,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 93D25B7FE20449BBAF15E98FE211CDC0 Ref B: TYO201151003042 Ref C: 2024-08-26T08:55:49Z' + - 'Ref A: 9386F0D4B67F448F9CA37DC236A22425 Ref B: SG2AA1040512036 Ref C: 2025-12-23T05:55:30Z' status: code: 200 message: OK @@ -4813,15 +5148,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -4830,7 +5166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:50 GMT + - Tue, 23 Dec 2025 05:55:33 GMT expires: - '-1' pragma: @@ -4841,12 +5177,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/2407c97b-c38e-4786-a62c-2bb317981216 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43950 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CD38842C69794B7CBD46F26582AEEB23 Ref B: TYO201151001009 Ref C: 2024-08-26T08:55:50Z' + - 'Ref A: DD93E525BBC44363A347FCFA1A119B17 Ref B: SG2AA1070305042 Ref C: 2025-12-23T05:55:32Z' status: code: 200 message: OK @@ -4863,35 +5201,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:51 GMT + - Tue, 23 Dec 2025 05:55:33 GMT expires: - '-1' pragma: @@ -4902,12 +5242,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/87d33a66-9e82-4ea7-914a-e8bae92427f7 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73962 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73987 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0A7FBC173C25447E8BA79392501BBC97 Ref B: TYO201100117045 Ref C: 2024-08-26T08:55:51Z' + - 'Ref A: 86FB8D9B12E84D2183A181E0F70390E3 Ref B: SG2AA1040516031 Ref C: 2025-12-23T05:55:33Z' status: code: 200 message: OK @@ -4924,13 +5266,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -4938,8 +5281,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -4947,8 +5292,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -4956,8 +5303,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -4965,8 +5314,10 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -4974,53 +5325,138 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5028,9 +5464,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5038,9 +5475,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5048,41 +5486,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5090,63 +5526,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5154,18 +5597,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5173,9 +5618,9 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East - US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -5183,9 +5628,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5193,9 +5638,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5203,9 +5648,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -5213,9 +5658,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5223,18 +5669,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5242,9 +5690,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -5252,44 +5701,49 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5297,18 +5751,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG","East US"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5316,225 +5772,250 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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, - SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","East - US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central - US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US STG","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South - Africa North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","France Central","South + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central - US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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":"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":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/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 @@ -5542,34 +6023,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5577,31 +6063,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5609,40 +6093,39 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5650,15 +6133,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5666,9 +6144,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -5676,15 +6155,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -5692,18 +6166,19 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -5711,15 +6186,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5727,9 +6196,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5737,9 +6207,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5747,9 +6218,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -5757,9 +6229,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -5767,9 +6240,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -5777,31 +6251,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":["2","3","1"]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":["2","3","1"]},{"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":"Israel - Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico - Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar - Central","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":"Spain - Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland - North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5809,9 +6281,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5819,9 +6303,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5829,9 +6325,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 @@ -5839,235 +6336,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -6075,15 +6598,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West - US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -6091,18 +6609,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -6110,9 +6630,9 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6120,18 +6640,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6139,90 +6661,83 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East - US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkSecurityPerimeters","locations":["East - US 2 EUAP","Central US EUAP","West Central US","Jio India West","Jio India - Central","East US STG","North Central US","West US","West Europe","UAE Central","Germany + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","South Africa @@ -6231,19 +6746,38 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195259' + - '217556' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:53 GMT + - Tue, 23 Dec 2025 05:55:34 GMT expires: - '-1' pragma: @@ -6257,7 +6791,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 07582BD651E74E91A06948C6CFD87FC1 Ref B: TYO201151001009 Ref C: 2024-08-26T08:55:52Z' + - 'Ref A: 66D83AD83355432EB7AC33D96F69E687 Ref B: SG2AA1070306034 Ref C: 2025-12-23T05:55:34Z' status: code: 200 message: OK @@ -6274,36 +6808,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: body: - string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"e6a5a532-7dad-427c-9e56-d2b21cd19c40\\\"\",\r\n \ - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ - addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\ - \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\ - \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/0/NETWORKINTERFACES/VMSS1F0D7NIC/ipConfigurations/VMSS1F0D7IPCONFIG\"\ - \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/1/NETWORKINTERFACES/VMSS1F0D7NIC/ipConfigurations/VMSS1F0D7IPCONFIG\"\ - \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/2/NETWORKINTERFACES/VMSS1F0D7NIC/ipConfigurations/VMSS1F0D7IPCONFIG\"\ - \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/3/NETWORKINTERFACES/VMSS1F0D7NIC/ipConfigurations/VMSS1F0D7IPCONFIG\"\ - \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\ - ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n}" + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"cf996d68-be11-4657-99bb-b11bdbda0a2c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/2/NETWORKINTERFACES/VMSS16DA8NIC/ipConfigurations/VMSS16DA8IPCONFIG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/3/NETWORKINTERFACES/VMSS16DA8NIC/ipConfigurations/VMSS16DA8IPCONFIG"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '2195' + - '1348' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:53 GMT + - Tue, 23 Dec 2025 05:55:34 GMT etag: - - W/"e6a5a532-7dad-427c-9e56-d2b21cd19c40" + - W/"cf996d68-be11-4657-99bb-b11bdbda0a2c" expires: - '-1' pragma: @@ -6315,11 +6838,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 37043ea8-2434-463a-80b4-8d61fdcba04a + - 41c9d45e-0294-437d-95a6-35cd98747b05 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/b3835c41-0625-4b31-982c-ae71964b9ac6 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 386080DCD07549768FA7BD8614F717EC Ref B: TYO201100116019 Ref C: 2024-08-26T08:55:54Z' + - 'Ref A: 2CDA47DB1EAB493FB79A782F6F022639 Ref B: SG2AA1040518042 Ref C: 2025-12-23T05:55:35Z' status: code: 200 message: OK @@ -6336,15 +6861,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -6353,7 +6879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:54 GMT + - Tue, 23 Dec 2025 05:55:35 GMT expires: - '-1' pragma: @@ -6364,12 +6890,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e1b6fb6d-9970-4b9b-9fce-99a7d40056bf x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43949 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 09DCE2DD4927489C8EE087135DA8564F Ref B: TYO201151002036 Ref C: 2024-08-26T08:55:54Z' + - 'Ref A: D3FB445D220E40FF91640D720EC99419 Ref B: SG2AA1040518034 Ref C: 2025-12-23T05:55:35Z' status: code: 200 message: OK @@ -6386,35 +6914,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:54 GMT + - Tue, 23 Dec 2025 05:55:36 GMT expires: - '-1' pragma: @@ -6425,12 +6955,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/27544e38-9a90-4203-8f26-9dff31442b79 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73961 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73986 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 72CC647B552245F0BDB893DFD08456A0 Ref B: TYO201151005042 Ref C: 2024-08-26T08:55:55Z' + - 'Ref A: 68828D0D145548D1AFDADB6719720B06 Ref B: SG2AA1040512036 Ref C: 2025-12-23T05:55:36Z' status: code: 200 message: OK @@ -6447,15 +6979,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -6464,7 +6997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:56 GMT + - Tue, 23 Dec 2025 05:55:37 GMT expires: - '-1' pragma: @@ -6475,12 +7008,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e0178b4a-2317-4fee-a5d9-a6fc2fbde1df x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43948 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: E5F3BEA7AC524638B3F5B2F802718C01 Ref B: TYO201100117049 Ref C: 2024-08-26T08:55:56Z' + - 'Ref A: 1D5BA22BCEE64C44BC34800E39B0F51C Ref B: SG2AA1040516054 Ref C: 2025-12-23T05:55:37Z' status: code: 200 message: OK @@ -6497,35 +7032,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:55:56 GMT + - Tue, 23 Dec 2025 05:55:38 GMT expires: - '-1' pragma: @@ -6536,12 +7073,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/ac874d33-1454-4719-a275-9def94725997 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73960 + - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73985 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9813C5C1E1F64D3A921B8D914DFC6DD6 Ref B: TYO201151001023 Ref C: 2024-08-26T08:55:56Z' + - 'Ref A: 2EA5C36F113A412D814B37EDDFBDF073 Ref B: SG2AA1070303036 Ref C: 2025-12-23T05:55:37Z' status: code: 200 message: OK @@ -6563,7 +7102,7 @@ interactions: "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"}}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm2", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm2VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -6582,21 +7121,22 @@ interactions: Connection: - keep-alive Content-Length: - - '2558' + - '2556' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_7IdliFMU8sZnmfO8VbELIhQu5JhHd3BS","name":"vm_deploy_7IdliFMU8sZnmfO8VbELIhQu5JhHd3BS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17683061070080726566","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:56:01.8220878Z","duration":"PT0.0007913S","correlationId":"a5129dc2-aa89-43a9-8f49-60de4c466177","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_V6k0rXhI8iRaZhPsx7CRz05IBAXbNeji","name":"vm_deploy_V6k0rXhI8iRaZhPsx7CRz05IBAXbNeji","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13247373099153897555","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T05:55:41.3468208Z","duration":"PT0.0008979S","correlationId":"6871b3e7-d154-43c3-b2bb-3543f4fa6e85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_7IdliFMU8sZnmfO8VbELIhQu5JhHd3BS/operationStatuses/08584769443255088315?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_V6k0rXhI8iRaZhPsx7CRz05IBAXbNeji/operationStatuses/08584351375441241007?api-version=2024-11-01&t=639020661452374563&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=j8ZhK2iPTF6Aq1_rR2SIPtI_qLUyXyvOMxSLnrxVtXwl6QTfmWYnI838R_P92uGCFgbHrviDZ6w2v2nI_6jVEQp4he6JwuyRuWccrRWQCiEK9mC3I0ttaChSjWhegr5BJznyC_WHGEg3s1lfjZ6kGDS87OTC-CLXDOTADRfXwu79Vz1LzZ6em79HeUfh37jdRzjv1Ajra91A_wSQi8QaM-JOsJ7Y3mr9EjPcsFVcMdpaOtSNNNfBFjGSdAoDe3Wzu7OX4Mzbe4DIAi3REoseKox1Em94i-GUUmvQ7z5VlQ6bZN4CeTLSTK-8cUzrxet2tZvIsVPoT717_lDykOj1zw&h=8p9aNacD7DjdFVpISm1u_YuKKcOJqwh87MBUI5qb7Gs cache-control: - no-cache content-length: @@ -6604,7 +7144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:56:02 GMT + - Tue, 23 Dec 2025 05:55:44 GMT expires: - '-1' pragma: @@ -6616,13 +7156,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.560.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 5FCAA7148FB1464DA8FCED1F3DAC1B55 Ref B: TYO201151003036 Ref C: 2024-08-26T08:55:57Z' + - 'Ref A: A5445137E7224893A5AB37D27628D1B3 Ref B: SG2AA1040516062 Ref C: 2025-12-23T05:55:38Z' status: code: 201 message: Created @@ -6639,10 +7179,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769443255088315?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351375441241007?api-version=2024-11-01&t=639020661452374563&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=j8ZhK2iPTF6Aq1_rR2SIPtI_qLUyXyvOMxSLnrxVtXwl6QTfmWYnI838R_P92uGCFgbHrviDZ6w2v2nI_6jVEQp4he6JwuyRuWccrRWQCiEK9mC3I0ttaChSjWhegr5BJznyC_WHGEg3s1lfjZ6kGDS87OTC-CLXDOTADRfXwu79Vz1LzZ6em79HeUfh37jdRzjv1Ajra91A_wSQi8QaM-JOsJ7Y3mr9EjPcsFVcMdpaOtSNNNfBFjGSdAoDe3Wzu7OX4Mzbe4DIAi3REoseKox1Em94i-GUUmvQ7z5VlQ6bZN4CeTLSTK-8cUzrxet2tZvIsVPoT717_lDykOj1zw&h=8p9aNacD7DjdFVpISm1u_YuKKcOJqwh87MBUI5qb7Gs response: body: string: '{"status":"Running"}' @@ -6654,7 +7195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:56:02 GMT + - Tue, 23 Dec 2025 05:55:46 GMT expires: - '-1' pragma: @@ -6668,7 +7209,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 164E042661724A02B72B3B2AFEC9C349 Ref B: TYO201151003036 Ref C: 2024-08-26T08:56:02Z' + - 'Ref A: A691F8C698DB48BB82287E5C0973C6CF Ref B: SG2AA1040519023 Ref C: 2025-12-23T05:55:45Z' status: code: 200 message: OK @@ -6685,22 +7226,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769443255088315?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351375441241007?api-version=2024-11-01&t=639020661452374563&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=j8ZhK2iPTF6Aq1_rR2SIPtI_qLUyXyvOMxSLnrxVtXwl6QTfmWYnI838R_P92uGCFgbHrviDZ6w2v2nI_6jVEQp4he6JwuyRuWccrRWQCiEK9mC3I0ttaChSjWhegr5BJznyC_WHGEg3s1lfjZ6kGDS87OTC-CLXDOTADRfXwu79Vz1LzZ6em79HeUfh37jdRzjv1Ajra91A_wSQi8QaM-JOsJ7Y3mr9EjPcsFVcMdpaOtSNNNfBFjGSdAoDe3Wzu7OX4Mzbe4DIAi3REoseKox1Em94i-GUUmvQ7z5VlQ6bZN4CeTLSTK-8cUzrxet2tZvIsVPoT717_lDykOj1zw&h=8p9aNacD7DjdFVpISm1u_YuKKcOJqwh87MBUI5qb7Gs response: body: - string: '{"status":"Running"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '20' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:56:33 GMT + - Tue, 23 Dec 2025 05:56:17 GMT expires: - '-1' pragma: @@ -6714,7 +7256,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 65A1BD525AAF45CF88BEF68CD279F861 Ref B: TYO201151003036 Ref C: 2024-08-26T08:56:33Z' + - 'Ref A: AF538288A0CC4947B01A629165BAF3A2 Ref B: SG2AA1070305025 Ref C: 2025-12-23T05:56:17Z' status: code: 200 message: OK @@ -6731,22 +7273,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769443255088315?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_V6k0rXhI8iRaZhPsx7CRz05IBAXbNeji","name":"vm_deploy_V6k0rXhI8iRaZhPsx7CRz05IBAXbNeji","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13247373099153897555","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:56:13.1946679Z","duration":"PT31.8478471S","correlationId":"6871b3e7-d154-43c3-b2bb-3543f4fa6e85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '22' + - '2825' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:04 GMT + - Tue, 23 Dec 2025 05:56:17 GMT expires: - '-1' pragma: @@ -6760,7 +7303,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4ACDBDDEE9764F8E84544F15BC0E6AC1 Ref B: TYO201151003036 Ref C: 2024-08-26T08:57:04Z' + - 'Ref A: A6E0948ACEFA458C86E300079D62C633 Ref B: SG2AA1040516040 Ref C: 2025-12-23T05:56:17Z' status: code: 200 message: OK @@ -6768,7 +7311,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -6777,22 +7320,63 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vm_deploy_7IdliFMU8sZnmfO8VbELIhQu5JhHd3BS","name":"vm_deploy_7IdliFMU8sZnmfO8VbELIhQu5JhHd3BS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17683061070080726566","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:56:42.2094497Z","duration":"PT40.3881532S","correlationId":"a5129dc2-aa89-43a9-8f49-60de4c466177","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"b68c8d6e-01dc-4cd4-adf8-e59a688aa223\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n + \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm2_disk1_912cf9431c4c4219af0e029c22449bcc\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_disk1_912cf9431c4c4219af0e029c22449bcc\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": + {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm2\",\r\n \"osName\": + \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2025-12-23T05:56:13+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm2_disk1_912cf9431c4c4219af0e029c22449bcc\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2025-12-23T05:56:00.2065404+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2025-12-23T05:56:07.8317033+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T05:55:57.7067237+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '2825' + - '3248' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:04 GMT + - Tue, 23 Dec 2025 05:56:18 GMT expires: - '-1' pragma: @@ -6803,13 +7387,17 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 23808DF5C41C4C1A8A1E15099C82D934 Ref B: TYO201151003036 Ref C: 2024-08-26T08:57:04Z' + - 'Ref A: 2A068B949070411887FA1BE9C6DE695B Ref B: SG2AA1040519031 Ref C: 2025-12-23T05:56:18Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -6823,65 +7411,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\ - : {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"vmId\": \"14ff5927-15ec-4ed3-b496-8f933b8a9326\"\ - ,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\ - publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\ - sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\ - : \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\ - : \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\"\ - : {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\"\ - : \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n\ - \ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"vm2\",\r\n \ - \ \"osName\": \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"\ - vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\"\ - : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"\ - Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \ - \ \"time\": \"2024-08-26T08:56:43+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\ - \ [\r\n {\r\n \"name\": \"vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2024-08-26T08:56:11.0828387+00:00\"\r\n }\r\ - \n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2024-08-26T08:56:39.9895952+00:00\"\ - \r\n },\r\n {\r\n \"code\": \"PowerState/running\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\ - \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2024-08-26T08:56:08.582797+00:00\"\ - \r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: '{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"5354fec4-91f7-4aee-a9c6-af4aca95c0f0\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0dc6a0c9-3211-40d1-9715-d61d7ecca84c","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"5354fec4-91f7-4aee-a9c6-af4aca95c0f0\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"1eioqftaz0nezouomrwmvv045b.dx.internal.cloudapp.net"},"macAddress":"00-22-48-09-E8-64","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '3258' + - '1994' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:06 GMT + - Tue, 23 Dec 2025 05:56:19 GMT + etag: + - W/"5354fec4-91f7-4aee-a9c6-af4aca95c0f0" expires: - '-1' pragma: @@ -6892,15 +7440,15 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;33 + x-ms-arm-service-request-id: + - 261fbc75-f87e-4f88-b462-34680666b2e3 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 871F43E195D54A3394334B40DE0A4C44 Ref B: TYO201151005031 Ref C: 2024-08-26T08:57:06Z' + - 'Ref A: 9897963E4D714704876FD7DB24BB42D8 Ref B: SG2AA1070303040 Ref C: 2025-12-23T05:56:18Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6914,49 +7462,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + --size User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ - ,\r\n \"etag\": \"W/\\\"e960cca3-b798-4eba-a6d1-6686f4acfa8c\\\"\",\r\n \ - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"1cf68d21-ba81-4a25-9c4b-a70dca3ee749\",\r\n \ - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\ - ,\r\n \"etag\": \"W/\\\"e960cca3-b798-4eba-a6d1-6686f4acfa8c\\\"\"\ - ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\ - : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ - \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ - : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ - \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"qyfonyjohuzupedhcjublqhsab.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-36-79-0A\",\r\n \"vnetEncryptionSupported\"\ - : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\ - \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ - \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ - \n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"\ - auxiliaryMode\": \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ - ,\r\n \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + string: '{"name":"vm2PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","etag":"W/\"9f6c001c-62b9-4f5e-afed-05fb9ed54ec5\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6ddd7787-b654-44ed-9e30-437c7305ba21","ipAddress":"52.160.68.194","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '2439' + - '793' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:07 GMT + - Tue, 23 Dec 2025 05:56:19 GMT etag: - - W/"e960cca3-b798-4eba-a6d1-6686f4acfa8c" + - W/"9f6c001c-62b9-4f5e-afed-05fb9ed54ec5" expires: - '-1' pragma: @@ -6968,11 +7492,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51d5b11a-5872-4de4-a69a-e220516a15c9 + - b231782e-be6e-45f8-8724-09bddc0f7f30 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B83FF61D50FE425398263039F5E6F551 Ref B: TYO201100113011 Ref C: 2024-08-26T08:57:07Z' + - 'Ref A: 6E8028E308534DB3B634056569B9C174 Ref B: SG2AA1070303029 Ref C: 2025-12-23T05:56:20Z' status: code: 200 message: OK @@ -6984,39 +7508,52 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm identity assign Connection: - keep-alive ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule + - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"5ed75d26-b7a1-47f3-9f69-90071aaf4ae4\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59fad262-1ebe-44f2-9fab-54d63f523340\"\ - ,\r\n \"ipAddress\": \"138.91.194.6\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ - \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"b68c8d6e-01dc-4cd4-adf8-e59a688aa223\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n + \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm2_disk1_912cf9431c4c4219af0e029c22449bcc\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_disk1_912cf9431c4c4219af0e029c22449bcc\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": + {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:55:57.7067237+00:00\"\r\n },\r\n \"etag\": + \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '927' + - '1959' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:08 GMT + - Tue, 23 Dec 2025 05:56:20 GMT etag: - - W/"5ed75d26-b7a1-47f3-9f69-90071aaf4ae4" + - '"2"' expires: - '-1' pragma: @@ -7027,17 +7564,19 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 8a8f9503-4f8a-4b7a-a579-b9d20f81cb7a + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 00643192A3924AE2B568649DB1F9C504 Ref B: TYO201100117049 Ref C: 2024-08-26T08:57:08Z' + - 'Ref A: 9927521D17C2443FAE03DEEA5CD3760C Ref B: SG2AA1040515060 Ref C: 2025-12-23T05:56:20Z' status: code: 200 - message: OK + message: '' - request: - body: null + body: '{"identity": {"type": "SystemAssigned"}}' headers: Accept: - application/json @@ -7047,50 +7586,59 @@ interactions: - vm identity assign Connection: - keep-alive + Content-Length: + - '40' + Content-Type: + - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\ - : {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"vmId\": \"14ff5927-15ec-4ed3-b496-8f933b8a9326\"\ - ,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\ - publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\ - sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\ - : \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\ - : \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\"\ - : {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\"\ - : \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n\ - \ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ - }]},\r\n \"timeCreated\": \"2024-08-26T08:56:08.582797+00:00\"\r\n },\r\ - \n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"41a69b64-9438-4bad-9804-c62317b890ce\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Updating\",\r\n \"vmId\": \"b68c8d6e-01dc-4cd4-adf8-e59a688aa223\",\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm2_disk1_912cf9431c4c4219af0e029c22449bcc\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_disk1_912cf9431c4c4219af0e029c22449bcc\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": + {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:55:57.7067237+00:00\"\r\n },\r\n \"etag\": + \"\\\"3\\\"\"\r\n}" headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d133291d-f58c-4f02-9c1d-17011ef4f118?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020661824075757&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G1Bu-PYUA-b0pg27pNLCJPDcRbk_HZZZKlhqa3WYSyzrs5Qb02tRU0NsRF9MvE7DYR62kcXJqkeUAxY3c0HOtkH31yjKNLRK6-hdJPfuq9F5Lf3qw8j1RU4CGc85dCVXjbQTlbb_mmirdXTx-aGDdTdvqHzBvjFXQhHcWz22hCbtuodZgdO2tpjYlHd_msvxE8uKYW-fxOWX8NI1RMnvlUCQa01xHYitoc-ZIAuMZUQ7vPjdQUwe27jY1ilGEmaxHpxQKS2_YKjO5BRfymVHgkouWFyMKWGIWi0I1d48TIm1l0KeT1V8mtavv52_YFBPhqpkM2bZXc13rzc28riBVA&h=KturC6VflKhHHn8SQKE_TEOLNA-Lg43Cb9oAeZLtIOg cache-control: - no-cache content-length: - - '1966' + - '2128' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:09 GMT + - Tue, 23 Dec 2025 05:56:22 GMT etag: - - '"2"' + - '"3"' expires: - '-1' pragma: @@ -7101,81 +7649,51 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/17fb9018-d050-4acc-8ea3-c107a8573313 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' x-msedge-ref: - - 'Ref A: 69ECE0F774624EBBAAD13F9FC9FA025F Ref B: TYO201151003036 Ref C: 2024-08-26T08:57:09Z' + - 'Ref A: D2C6700FCC444BF88A3BB64B9F1A5E9B Ref B: SG2AA1070304034 Ref C: 2025-12-23T05:56:21Z' status: code: 200 message: '' - request: - body: '{"identity": {"type": "SystemAssigned"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - vm identity assign Connection: - keep-alive - Content-Length: - - '40' - Content-Type: - - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2024-11-01 + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d133291d-f58c-4f02-9c1d-17011ef4f118?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020661824075757&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G1Bu-PYUA-b0pg27pNLCJPDcRbk_HZZZKlhqa3WYSyzrs5Qb02tRU0NsRF9MvE7DYR62kcXJqkeUAxY3c0HOtkH31yjKNLRK6-hdJPfuq9F5Lf3qw8j1RU4CGc85dCVXjbQTlbb_mmirdXTx-aGDdTdvqHzBvjFXQhHcWz22hCbtuodZgdO2tpjYlHd_msvxE8uKYW-fxOWX8NI1RMnvlUCQa01xHYitoc-ZIAuMZUQ7vPjdQUwe27jY1ilGEmaxHpxQKS2_YKjO5BRfymVHgkouWFyMKWGIWi0I1d48TIm1l0KeT1V8mtavv52_YFBPhqpkM2bZXc13rzc28riBVA&h=KturC6VflKhHHn8SQKE_TEOLNA-Lg43Cb9oAeZLtIOg response: body: - string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"923f9872-75d1-44b9-84f4-3d425350c19c\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"\ - Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n\ - \ \"vmId\": \"14ff5927-15ec-4ed3-b496-8f933b8a9326\",\r\n \"storageProfile\"\ - : {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\ - \n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\ - \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\",\r\n\ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\"\ - : {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\"\ - : \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n\ - \ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ - }]},\r\n \"timeCreated\": \"2024-08-26T08:56:08.582797+00:00\"\r\n },\r\ - \n \"etag\": \"\\\"3\\\"\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:56:22.3631477+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d133291d-f58c-4f02-9c1d-17011ef4f118\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8393d1ef-0d45-4431-807e-e527a1266f41?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602594326911839&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=QHyeu7sNaUMbEB94iqedEyJy-ulQP8y331lPfy-55CegBtGGRTWdMT8dUhGw4MDm-fi7uk2hwYCWf0iu5X3g5Y_oVyKiz6zFhOatv7XLQ_KBnygTB58pSnJwiPO_mmOrF7VuyV-_uSE7l08_MVj5fe0cVCD1tl-khWCj745665zM9lOQagWBOqpqghCBa7W-Xb1YFDBZsCp9Zo8iNh66lRfzNCVT32P3zdqdnWVcNVYYBqef04Ll9Ve3febdeKzmSlbaiwck51WASfOYVmWJeeuBI5aCXBaxO5r8SofvCUnEJPzGTAf8Lk4VDSJcSm_vQaUxzMG3HkQA00IfVsLmaA&h=WWK_fSqqvBaxFZ-HOmryqSULIx6vHamxYC49yLvYGBs cache-control: - no-cache content-length: - - '2135' + - '134' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:12 GMT - etag: - - '"3"' + - Tue, 23 Dec 2025 05:56:22 GMT expires: - '-1' pragma: @@ -7186,14 +7704,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/11380076-fe05-4e03-af92-e249accc1a17 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 94DDACF2A71C4DA3AE477A0BE502FD23 Ref B: TYO201151003034 Ref C: 2024-08-26T08:57:10Z' + - 'Ref A: 4B3CB63C822743C581C8AAC4B92C52FC Ref B: SG2AA1070304040 Ref C: 2025-12-23T05:56:22Z' status: code: 200 message: '' @@ -7211,23 +7731,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8393d1ef-0d45-4431-807e-e527a1266f41?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602594326911839&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=QHyeu7sNaUMbEB94iqedEyJy-ulQP8y331lPfy-55CegBtGGRTWdMT8dUhGw4MDm-fi7uk2hwYCWf0iu5X3g5Y_oVyKiz6zFhOatv7XLQ_KBnygTB58pSnJwiPO_mmOrF7VuyV-_uSE7l08_MVj5fe0cVCD1tl-khWCj745665zM9lOQagWBOqpqghCBa7W-Xb1YFDBZsCp9Zo8iNh66lRfzNCVT32P3zdqdnWVcNVYYBqef04Ll9Ve3febdeKzmSlbaiwck51WASfOYVmWJeeuBI5aCXBaxO5r8SofvCUnEJPzGTAf8Lk4VDSJcSm_vQaUxzMG3HkQA00IfVsLmaA&h=WWK_fSqqvBaxFZ-HOmryqSULIx6vHamxYC49yLvYGBs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d133291d-f58c-4f02-9c1d-17011ef4f118?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020661824075757&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G1Bu-PYUA-b0pg27pNLCJPDcRbk_HZZZKlhqa3WYSyzrs5Qb02tRU0NsRF9MvE7DYR62kcXJqkeUAxY3c0HOtkH31yjKNLRK6-hdJPfuq9F5Lf3qw8j1RU4CGc85dCVXjbQTlbb_mmirdXTx-aGDdTdvqHzBvjFXQhHcWz22hCbtuodZgdO2tpjYlHd_msvxE8uKYW-fxOWX8NI1RMnvlUCQa01xHYitoc-ZIAuMZUQ7vPjdQUwe27jY1ilGEmaxHpxQKS2_YKjO5BRfymVHgkouWFyMKWGIWi0I1d48TIm1l0KeT1V8mtavv52_YFBPhqpkM2bZXc13rzc28riBVA&h=KturC6VflKhHHn8SQKE_TEOLNA-Lg43Cb9oAeZLtIOg response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:57:12.3495496+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:57:18.7715265+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"8393d1ef-0d45-4431-807e-e527a1266f41\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:56:22.3631477+00:00\",\r\n \"endTime\": + \"2025-12-23T05:56:27.660093+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d133291d-f58c-4f02-9c1d-17011ef4f118\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:36 GMT + - Tue, 23 Dec 2025 05:56:53 GMT expires: - '-1' pragma: @@ -7238,12 +7758,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/ea7eb9bd-e5c4-439c-904f-4af86412df98 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 23299AFA7A334E3B960E42ED57E5E6BE Ref B: TYO201100115031 Ref C: 2024-08-26T08:57:37Z' + - 'Ref A: 77E249392CC54437BEA6EFD08B3CB960 Ref B: SG2AA1040517060 Ref C: 2025-12-23T05:56:53Z' status: code: 200 message: '' @@ -7261,48 +7785,46 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"923f9872-75d1-44b9-84f4-3d425350c19c\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"\ - Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\ - \n \"vmId\": \"14ff5927-15ec-4ed3-b496-8f933b8a9326\",\r\n \"storageProfile\"\ - : {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\ - \n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\ - \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\",\r\n\ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\"\ - : {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\"\ - : \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n\ - \ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ - }]},\r\n \"timeCreated\": \"2024-08-26T08:56:08.582797+00:00\"\r\n },\r\ - \n \"etag\": \"\\\"3\\\"\"\r\n}" + string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"41a69b64-9438-4bad-9804-c62317b890ce\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"b68c8d6e-01dc-4cd4-adf8-e59a688aa223\",\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm2_disk1_912cf9431c4c4219af0e029c22449bcc\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_disk1_912cf9431c4c4219af0e029c22449bcc\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": + {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:55:57.7067237+00:00\"\r\n },\r\n \"etag\": + \"\\\"3\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '2136' + - '2129' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:37 GMT + - Tue, 23 Dec 2025 05:56:54 GMT etag: - '"3"' expires: @@ -7315,12 +7837,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23983,Microsoft.Compute/LowCostGetResource;29 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;29 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: E6E00CFA644A4A5D99EB95CDF1966DCC Ref B: TYO201100115031 Ref C: 2024-08-26T08:57:37Z' + - 'Ref A: E0CD422B033444BCB85FACDF4169992F Ref B: SG2AA1040519029 Ref C: 2025-12-23T05:56:54Z' status: code: 200 message: '' @@ -7338,48 +7862,46 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"923f9872-75d1-44b9-84f4-3d425350c19c\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"\ - Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\ - \n \"vmId\": \"14ff5927-15ec-4ed3-b496-8f933b8a9326\",\r\n \"storageProfile\"\ - : {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\ - \n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240430.1733\"\ - \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\",\r\n\ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_a348a5903b594707a30d5479a943a222\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\"\ - : {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\"\ - : \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n\ - \ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ - }]},\r\n \"timeCreated\": \"2024-08-26T08:56:08.582797+00:00\"\r\n },\r\ - \n \"etag\": \"\\\"3\\\"\"\r\n}" + string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"41a69b64-9438-4bad-9804-c62317b890ce\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"b68c8d6e-01dc-4cd4-adf8-e59a688aa223\",\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm2_disk1_912cf9431c4c4219af0e029c22449bcc\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/disks/vm2_disk1_912cf9431c4c4219af0e029c22449bcc\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"admin123\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": + {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:55:57.7067237+00:00\"\r\n },\r\n \"etag\": + \"\\\"3\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '2136' + - '2129' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:37 GMT + - Tue, 23 Dec 2025 05:56:55 GMT etag: - '"3"' expires: @@ -7392,12 +7914,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23982,Microsoft.Compute/LowCostGetResource;28 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;28 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 342067AF77A1434AAA3DC57ED9DD24FC Ref B: TYO201151003036 Ref C: 2024-08-26T08:57:38Z' + - 'Ref A: 3213260363E44ED6A058AD4E49372702 Ref B: SG2AA1040516040 Ref C: 2025-12-23T05:56:55Z' status: code: 200 message: '' @@ -7414,22 +7938,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2024-08-26T08:53:05Z","module":"vm","DateCreated":"2024-08-26T08:53:08Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001","name":"cli_test_msi_no_scope000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi_no_scope","date":"2025-12-23T05:52:38Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '452' + - '376' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:38 GMT + - Tue, 23 Dec 2025 05:56:56 GMT expires: - '-1' pragma: @@ -7443,7 +7968,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C79287218C944661991AE39E7728C393 Ref B: TYO201100113011 Ref C: 2024-08-26T08:57:38Z' + - 'Ref A: 8814DE95A7E141E6AE9117C0ED83A6EC Ref B: SG2AA1070304040 Ref C: 2025-12-23T05:56:55Z' status: code: 200 message: OK @@ -7460,15 +7985,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -7477,7 +8003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:39 GMT + - Tue, 23 Dec 2025 05:56:56 GMT expires: - '-1' pragma: @@ -7488,12 +8014,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/595ad44e-f69e-4b92-a8bc-821f1581221f x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43942 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: E696ADC85EAD4F9F98441939BA945EB9 Ref B: TYO201100113011 Ref C: 2024-08-26T08:57:39Z' + - 'Ref A: AC0E55480C944ADBA8BC2A667432F932 Ref B: SG2AA1070302062 Ref C: 2025-12-23T05:56:57Z' status: code: 200 message: OK @@ -7510,35 +8038,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:40 GMT + - Tue, 23 Dec 2025 05:56:58 GMT expires: - '-1' pragma: @@ -7549,12 +8079,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/98bd4bcf-06c4-4a8b-a429-30c50a4717b8 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73958 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73984 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 05F81338995B40909DA60BE477BBEAB1 Ref B: TYO201151001040 Ref C: 2024-08-26T08:57:40Z' + - 'Ref A: 328635D3ED844A9C95E6515D7DC14C6E Ref B: SG2AA1040512062 Ref C: 2025-12-23T05:56:57Z' status: code: 200 message: OK @@ -7571,49 +8103,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"e6a5a532-7dad-427c-9e56-d2b21cd19c40\\\"\",\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e1e60a86-3d2e-4733-9067-126815c0f201\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \ - \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\ - : [\r\n {\r\n \"name\": \"subnet1\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"e6a5a532-7dad-427c-9e56-d2b21cd19c40\\\"\ - \",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\ - \ \"ipConfigurations\": [\r\n {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\ - \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2\"\ - \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/1/NETWORKINTERFACES/VMSS1F0D7NIC/ipConfigurations/VMSS1F0D7IPCONFIG\"\ - \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEPVW7NN5QPLCBT44LM7B22OHLDTY2BWKHSZXG3XV2WIPCFXFL254VGR/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/3/NETWORKINTERFACES/VMSS1F0D7NIC/ipConfigurations/VMSS1F0D7IPCONFIG\"\ - \r\n }\r\n ],\r\n \"delegations\"\ - : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\ - \n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \ - \ \"defaultOutboundAccess\": false\r\n },\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \ - \ \"enableDdosProtection\": false\r\n }\r\n }\r\n ]\r\n}" + string: '{"value":[{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"cf996d68-be11-4657-99bb-b11bdbda0a2c\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"16e810d9-ce60-4c9a-ba8e-646ccad75ef9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"cf996d68-be11-4657-99bb-b11bdbda0a2c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/2/NETWORKINTERFACES/VMSS16DA8NIC/ipConfigurations/VMSS16DA8IPCONFIG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_MSI_NO_SCOPEZO55MIIWBRVGAAOGKJRW754A72H6XQ22V5OHWJPPO33VQ2LNQCOGGQ/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/3/NETWORKINTERFACES/VMSS16DA8NIC/ipConfigurations/VMSS16DA8IPCONFIG"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' headers: cache-control: - no-cache content-length: - - '2806' + - '2111' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:40 GMT + - Tue, 23 Dec 2025 05:56:58 GMT expires: - '-1' pragma: @@ -7625,11 +8131,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ffc537f-0673-4644-9508-83dd7a902190 + - f18b5902-c035-429e-9270-2516928842d7 + x-ms-original-request-ids: + - f27bbdb3-b4d2-4492-bc23-7d8f6eefbd16 x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: 37DED4FCA9794853844E06A56381F5AA Ref B: TYO201100115031 Ref C: 2024-08-26T08:57:41Z' + - 'Ref A: 4E11937AFB5641C092B5101D9D593087 Ref B: SG2AA1070306023 Ref C: 2025-12-23T05:56:58Z' status: code: 200 message: OK @@ -7646,15 +8154,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -7663,7 +8172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:41 GMT + - Tue, 23 Dec 2025 05:56:59 GMT expires: - '-1' pragma: @@ -7674,12 +8183,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/dcc81483-db2f-4977-8b1a-e298c188f6bf x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43941 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43980 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B89A698A71484775B10424E37709DED5 Ref B: TYO201151002025 Ref C: 2024-08-26T08:57:41Z' + - 'Ref A: 9B7B1BDDDDF44444ACAFF6724FAAEA3D Ref B: SG2AA1070305042 Ref C: 2025-12-23T05:56:59Z' status: code: 200 message: OK @@ -7696,35 +8207,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:41 GMT + - Tue, 23 Dec 2025 05:56:59 GMT expires: - '-1' pragma: @@ -7735,12 +8248,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0cbd34dc-bc60-4b8f-8823-6bbee38fd8a5 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73957 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73983 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A9EEBD1DE3E14E61982878FA565E4778 Ref B: TYO201100113033 Ref C: 2024-08-26T08:57:42Z' + - 'Ref A: 46BEBF23DB7A42468E6D05D4C9D482EC Ref B: SG2AA1040512054 Ref C: 2025-12-23T05:56:59Z' status: code: 200 message: OK @@ -7757,15 +8272,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -7774,7 +8290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:43 GMT + - Tue, 23 Dec 2025 05:57:00 GMT expires: - '-1' pragma: @@ -7785,12 +8301,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/9b9142bb-b1e7-4768-972d-12abae30496c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43940 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43979 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 68AECE9F30144CE1BD1090168A23CE98 Ref B: TYO201100116035 Ref C: 2024-08-26T08:57:43Z' + - 'Ref A: CD65845319574177AE0CF4433FDDC84B Ref B: SG2AA1070306054 Ref C: 2025-12-23T05:57:00Z' status: code: 200 message: OK @@ -7807,35 +8325,37 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\"\ - ,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\ - : {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\ - \n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\ - ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1233' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:43 GMT + - Tue, 23 Dec 2025 05:57:02 GMT expires: - '-1' pragma: @@ -7846,12 +8366,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/972f1c82-9691-4052-96fb-dc5ae7193d09 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73956 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73982 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 62C8B65A92C74008AABB19763938738B Ref B: TYO201100114027 Ref C: 2024-08-26T08:57:44Z' + - 'Ref A: 07C9BF72C57A4C51B2252B75EF0E3DD6 Ref B: SG2AA1040520031 Ref C: 2025-12-23T05:57:01Z' status: code: 200 message: OK @@ -7892,14 +8414,14 @@ interactions: null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss25980", "adminUsername": + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss21406", "adminUsername": "admin123", "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": - {"networkInterfaceConfigurations": [{"name": "vmss25980Nic", "properties": {"ipConfigurations": - [{"name": "vmss25980IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, + {"networkInterfaceConfigurations": [{"name": "vmss21406Nic", "properties": {"ipConfigurations": + [{"name": "vmss21406IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}]}}], "networkSecurityGroup": {"id": "[resourceId(''Microsoft.Network/networkSecurityGroups'', ''vmss2NSG'')]"}, "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": - {"name": "Standard_DS1_v2", "capacity": 2}}], "outputs": {"VMSS": {"type": "object", + {"name": "Standard_B1ls", "capacity": 2}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'', ''vmss2''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}}, "parameters": {"adminPassword": {"value": "PasswordPassword1!"}}, "mode": "incremental"}}' @@ -7913,29 +8435,30 @@ interactions: Connection: - keep-alive Content-Length: - - '4468' + - '4466' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_otzi7gEio5cpKvpGVKp7tQ8aVtVuzezY","name":"vmss_deploy_otzi7gEio5cpKvpGVKp7tQ8aVtVuzezY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15148664137645077436","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:57:51.7987692Z","duration":"PT0.0004207S","correlationId":"e4fb6935-311a-403e-b1fc-2421b8002e08","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss2LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss2NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_UIYq0AiPWo1X8eR9CRo7IPxkIv2rmeup","name":"vmss_deploy_UIYq0AiPWo1X8eR9CRo7IPxkIv2rmeup","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14482952013275193367","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T05:57:08.8126021Z","duration":"PT0.00083S","correlationId":"b8e75372-b93f-43ea-acc7-32ce0c2c0a07","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss2LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss2NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_otzi7gEio5cpKvpGVKp7tQ8aVtVuzezY/operationStatuses/08584769442153341145?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_UIYq0AiPWo1X8eR9CRo7IPxkIv2rmeup/operationStatuses/08584351374566587957?api-version=2024-11-01&t=639020662366720471&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rNC4LX-IQQwi5HmWoorHo6D_5sSTYN-dK4V6ZHAwiSYpbSoweVRCZ7tHNNzjWGmEw8U8S_Y6B4rXluQKcrMClWYVTYNDFqwjbY4eMHYGBST0NFOnrliqYQf_IRA609SKoKsqkJuldDOWtlc4wlchuSTGrakbBqnW1XVsTlvMzzSbeuagTyKjaFrD3wEZ7r9LodL5_cN8zxDIMLXxNJE7yb1LoY1OJvdghxmmUaAe2ZluF3xgQnnpZSysL3M-XMh4qF3FSxXlhUjjAN9RSDm4ok42EVqRCLjfeFi3jiZCKRgWhV2yXMs1fYIsKYGqwukVFJitRh2e9KRth8Qhq-RB6Q&h=7P-ynjjwFq7G-crXLw3iTAM1NbYHcWFLRK-_Ox21uqs cache-control: - no-cache content-length: - - '2766' + - '2764' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:52 GMT + - Tue, 23 Dec 2025 05:57:15 GMT expires: - '-1' pragma: @@ -7947,13 +8470,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.560.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: F00BD570B3FA43CEB47AF27412C370EE Ref B: TYO201100117051 Ref C: 2024-08-26T08:57:44Z' + - 'Ref A: FF11DE4B7B0E4558A0BC8CF4CEF9885E Ref B: SG2AA1070304060 Ref C: 2025-12-23T05:57:02Z' status: code: 201 message: Created @@ -7970,10 +8493,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769442153341145?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351374566587957?api-version=2024-11-01&t=639020662366720471&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rNC4LX-IQQwi5HmWoorHo6D_5sSTYN-dK4V6ZHAwiSYpbSoweVRCZ7tHNNzjWGmEw8U8S_Y6B4rXluQKcrMClWYVTYNDFqwjbY4eMHYGBST0NFOnrliqYQf_IRA609SKoKsqkJuldDOWtlc4wlchuSTGrakbBqnW1XVsTlvMzzSbeuagTyKjaFrD3wEZ7r9LodL5_cN8zxDIMLXxNJE7yb1LoY1OJvdghxmmUaAe2ZluF3xgQnnpZSysL3M-XMh4qF3FSxXlhUjjAN9RSDm4ok42EVqRCLjfeFi3jiZCKRgWhV2yXMs1fYIsKYGqwukVFJitRh2e9KRth8Qhq-RB6Q&h=7P-ynjjwFq7G-crXLw3iTAM1NbYHcWFLRK-_Ox21uqs response: body: string: '{"status":"Accepted"}' @@ -7985,7 +8509,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:57:53 GMT + - Tue, 23 Dec 2025 05:57:17 GMT expires: - '-1' pragma: @@ -7999,7 +8523,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D00A1700924446BFB5643644E36C4473 Ref B: TYO201100117051 Ref C: 2024-08-26T08:57:53Z' + - 'Ref A: 847A60178808456E90BFE810367EF2B2 Ref B: SG2AA1070302052 Ref C: 2025-12-23T05:57:17Z' status: code: 200 message: OK @@ -8016,10 +8540,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769442153341145?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351374566587957?api-version=2024-11-01&t=639020662366720471&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rNC4LX-IQQwi5HmWoorHo6D_5sSTYN-dK4V6ZHAwiSYpbSoweVRCZ7tHNNzjWGmEw8U8S_Y6B4rXluQKcrMClWYVTYNDFqwjbY4eMHYGBST0NFOnrliqYQf_IRA609SKoKsqkJuldDOWtlc4wlchuSTGrakbBqnW1XVsTlvMzzSbeuagTyKjaFrD3wEZ7r9LodL5_cN8zxDIMLXxNJE7yb1LoY1OJvdghxmmUaAe2ZluF3xgQnnpZSysL3M-XMh4qF3FSxXlhUjjAN9RSDm4ok42EVqRCLjfeFi3jiZCKRgWhV2yXMs1fYIsKYGqwukVFJitRh2e9KRth8Qhq-RB6Q&h=7P-ynjjwFq7G-crXLw3iTAM1NbYHcWFLRK-_Ox21uqs response: body: string: '{"status":"Running"}' @@ -8031,7 +8556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:58:24 GMT + - Tue, 23 Dec 2025 05:57:48 GMT expires: - '-1' pragma: @@ -8045,7 +8570,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CB8065CE06A34D73993DE5FE592E54DB Ref B: TYO201100117051 Ref C: 2024-08-26T08:58:24Z' + - 'Ref A: 559E92624A3A41BB91F2EF24606125ED Ref B: SG2AA1070305023 Ref C: 2025-12-23T05:57:48Z' status: code: 200 message: OK @@ -8062,10 +8587,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769442153341145?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351374566587957?api-version=2024-11-01&t=639020662366720471&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rNC4LX-IQQwi5HmWoorHo6D_5sSTYN-dK4V6ZHAwiSYpbSoweVRCZ7tHNNzjWGmEw8U8S_Y6B4rXluQKcrMClWYVTYNDFqwjbY4eMHYGBST0NFOnrliqYQf_IRA609SKoKsqkJuldDOWtlc4wlchuSTGrakbBqnW1XVsTlvMzzSbeuagTyKjaFrD3wEZ7r9LodL5_cN8zxDIMLXxNJE7yb1LoY1OJvdghxmmUaAe2ZluF3xgQnnpZSysL3M-XMh4qF3FSxXlhUjjAN9RSDm4ok42EVqRCLjfeFi3jiZCKRgWhV2yXMs1fYIsKYGqwukVFJitRh2e9KRth8Qhq-RB6Q&h=7P-ynjjwFq7G-crXLw3iTAM1NbYHcWFLRK-_Ox21uqs response: body: string: '{"status":"Succeeded"}' @@ -8077,7 +8603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:58:55 GMT + - Tue, 23 Dec 2025 05:58:19 GMT expires: - '-1' pragma: @@ -8091,7 +8617,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2143C02A49704C33A8F9866C8A7BC545 Ref B: TYO201100117051 Ref C: 2024-08-26T08:58:55Z' + - 'Ref A: 63169E61BD5D46EA87F38DE1872D03F0 Ref B: SG2AA1040519031 Ref C: 2025-12-23T05:58:19Z' status: code: 200 message: OK @@ -8108,13 +8634,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --admin-username --admin-password --orchestration-mode --lb-sku + --vm-sku User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_otzi7gEio5cpKvpGVKp7tQ8aVtVuzezY","name":"vmss_deploy_otzi7gEio5cpKvpGVKp7tQ8aVtVuzezY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15148664137645077436","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:58:38.6620938Z","duration":"PT46.8637453S","correlationId":"e4fb6935-311a-403e-b1fc-2421b8002e08","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss2LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss2NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss25980","adminUsername":"admin123","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss25980Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss25980IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}]}}]}}]},"timeCreated":"2024-08-26T08:58:05.5379724+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"c6612131-7b53-43e8-b454-69aaad859585","platformFaultDomainCount":5,"timeCreated":"2024-08-26T08:58:05.5379724+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Resources/deployments/vmss_deploy_UIYq0AiPWo1X8eR9CRo7IPxkIv2rmeup","name":"vmss_deploy_UIYq0AiPWo1X8eR9CRo7IPxkIv2rmeup","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14482952013275193367","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:58:06.1227418Z","duration":"PT57.3101397S","correlationId":"b8e75372-b93f-43ea-acc7-32ce0c2c0a07","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss2LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss2NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss21406","adminUsername":"admin123","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss21406Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss21406IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}]}}]}}]},"timeCreated":"2025-12-23T05:57:34.6922999+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e644f48b-2bda-4554-b418-e2bc9ef9ba16","platformFaultDomainCount":5,"timeCreated":"2025-12-23T05:57:34.6922999+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' headers: cache-control: - no-cache @@ -8123,7 +8650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:58:56 GMT + - Tue, 23 Dec 2025 05:58:20 GMT expires: - '-1' pragma: @@ -8137,7 +8664,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D6EEBA9D05A1406984675097A0A09CE0 Ref B: TYO201100117051 Ref C: 2024-08-26T08:58:56Z' + - 'Ref A: F3A8C8C2AE5C44A18A1625A60DA235C6 Ref B: SG2AA1070302023 Ref C: 2025-12-23T05:58:19Z' status: code: 200 message: OK @@ -8155,54 +8682,46 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\"\ - ,\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"etag\"\ - : \"\\\"3\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\ - \n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n\ - \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ - \n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss25980\"\ - ,\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\"\ - : {\r\n \"disablePasswordAuthentication\": false,\r\n \"\ - provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \ - \ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ - \n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\"\ - ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\ - \n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n\ - \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\"\ - : {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\ - ,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \ - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"vmss25980Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"vmss25980IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"c6612131-7b53-43e8-b454-69aaad859585\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_B1ls\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"etag\": + \"\\\"2\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n + \ \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": + \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"vmss21406\",\r\n \"adminUsername\": + \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n + \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n + \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": + 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmss21406Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss21406IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"e644f48b-2bda-4554-b418-e2bc9ef9ba16\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2628' + - '2626' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:58:58 GMT + - Tue, 23 Dec 2025 05:58:20 GMT etag: - - '"3"' + - '"2"' expires: - '-1' pragma: @@ -8213,12 +8732,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2392,Microsoft.Compute/GetVMScaleSetResource;32 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6F32C0B760D240CA92A5212AA8615589 Ref B: TYO201151004054 Ref C: 2024-08-26T08:58:58Z' + - 'Ref A: C92E400965DE466B9A9FFB4E8C81701A Ref B: SG2AA1040516023 Ref C: 2025-12-23T05:58:20Z' status: code: 200 message: '' @@ -8240,59 +8761,50 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"5ba9f118-1c4d-4601-a588-bf9fc8145858\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\ - ,\r\n \"capacity\": 2\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\"\ - : {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\ - Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \ - \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \ - \ \"computerNamePrefix\": \"vmss25980\",\r\n \"adminUsername\"\ - : \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \ - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\"\ - : {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n\ - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ - : {\"networkInterfaceConfigurations\":[{\"name\":\"vmss25980Nic\",\"properties\"\ - :{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\"\ - :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"vmss25980IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"c6612131-7b53-43e8-b454-69aaad859585\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"4f738d21-e9af-42db-af7b-7e1b56effc33\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Standard_B1ls\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n + \ },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss21406\",\r\n + \ \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": + true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n + \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n + \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss21406Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss21406IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"e644f48b-2bda-4554-b418-e2bc9ef9ba16\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9312eab8-dcc5-4de8-b246-e744c35913b7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602595466945083&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=OVqlOlAXIuojFyvjT0ErXC2cai-9dO2dyj8Am9UKB6H1oa3jhgOubZcmC4X0FE3517fbzBbn8pkUHDnZdIONVqf_xiWWuzXxl2HNTUrl14vmabdKLK4fBLhXiTYJuDFajx6GGrkRUPJ31YfS1fWFbkRYeXrwB5zSq61emppmzzJZkOnabCy9xWBppF68ofQBfy4GV4ZHJkN9Xf6bSuRl55MjcQI--0WyVZKJuDS3BVYyLZ-qyR5FncKV9CBEFDCIcJ710ej1jB5Brf13evw76v18tI7JF0GtMyxo88cqUv-DI54ygeE9SuTH_pNGvCccObUcy2s2sDAFB-YHi0Uh3A&h=C3s4NYgExjDTikDd2mZeLzf2nlhGqOrpZt0Nw1vK-_0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c71835ea-2e01-4675-822b-7e4d3a55e3fa?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020663045089837&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=Em1uM6j_BU416RlW2Ny7Q4xKdt4AtyjFNpwPHL82bzw29jIRXiO0X9HgQJe68qqa1kNJ8LuNnOPHE_gR-gIwK3-ihbrSJftUb7e2ZtV2OzyuHF8zjTN85X7HiCcD_JmefTFXS0fnvjIpbpkBOzdfmwDGFU12-n1Q72q8D_uzsNWMs93iajaTSVWGTkCWYWwaTYn9m1-gC0LCOAsAQvUjoRumB_C8ZK0UqklY4-bHeSx5j59cwpB-Do0rVvLX4il7vcCWaHERKVPCUd4fE_ngFQHZIoHXWeLQotneRzrQF9Cg_63GI8mMK38jS7trcWPTxXs-P1zNbOG27Uit7pTZXA&h=MPsPXc6o7x-prLi3bFeIdMN5OLAQ7pr5NyM7DvRRCFo cache-control: - no-cache content-length: - - '2797' + - '2795' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:59:06 GMT + - Tue, 23 Dec 2025 05:58:24 GMT etag: - '"4"' expires: @@ -8305,8 +8817,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/c933c3e0-a48f-48bc-8279-a56cd2a35183 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetActionsResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5998,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetActionsResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5996,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: @@ -8314,7 +8830,7 @@ interactions: x-ms-request-charge: - '0' x-msedge-ref: - - 'Ref A: BCD464E145AE4D8A8CA53DC427AC5547 Ref B: TYO201151004054 Ref C: 2024-08-26T08:58:59Z' + - 'Ref A: 3F2DEB01FBD642B6AF4B513849707997 Ref B: SG2AA1070306034 Ref C: 2025-12-23T05:58:21Z' status: code: 200 message: '' @@ -8332,14 +8848,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9312eab8-dcc5-4de8-b246-e744c35913b7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602595466945083&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=OVqlOlAXIuojFyvjT0ErXC2cai-9dO2dyj8Am9UKB6H1oa3jhgOubZcmC4X0FE3517fbzBbn8pkUHDnZdIONVqf_xiWWuzXxl2HNTUrl14vmabdKLK4fBLhXiTYJuDFajx6GGrkRUPJ31YfS1fWFbkRYeXrwB5zSq61emppmzzJZkOnabCy9xWBppF68ofQBfy4GV4ZHJkN9Xf6bSuRl55MjcQI--0WyVZKJuDS3BVYyLZ-qyR5FncKV9CBEFDCIcJ710ej1jB5Brf13evw76v18tI7JF0GtMyxo88cqUv-DI54ygeE9SuTH_pNGvCccObUcy2s2sDAFB-YHi0Uh3A&h=C3s4NYgExjDTikDd2mZeLzf2nlhGqOrpZt0Nw1vK-_0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c71835ea-2e01-4675-822b-7e4d3a55e3fa?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020663045089837&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=Em1uM6j_BU416RlW2Ny7Q4xKdt4AtyjFNpwPHL82bzw29jIRXiO0X9HgQJe68qqa1kNJ8LuNnOPHE_gR-gIwK3-ihbrSJftUb7e2ZtV2OzyuHF8zjTN85X7HiCcD_JmefTFXS0fnvjIpbpkBOzdfmwDGFU12-n1Q72q8D_uzsNWMs93iajaTSVWGTkCWYWwaTYn9m1-gC0LCOAsAQvUjoRumB_C8ZK0UqklY4-bHeSx5j59cwpB-Do0rVvLX4il7vcCWaHERKVPCUd4fE_ngFQHZIoHXWeLQotneRzrQF9Cg_63GI8mMK38jS7trcWPTxXs-P1zNbOG27Uit7pTZXA&h=MPsPXc6o7x-prLi3bFeIdMN5OLAQ7pr5NyM7DvRRCFo response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:59:06.3827919+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9312eab8-dcc5-4de8-b246-e744c35913b7\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:58:24.4273307+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c71835ea-2e01-4675-822b-7e4d3a55e3fa\"\r\n}" headers: cache-control: - no-cache @@ -8348,7 +8863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:59:06 GMT + - Tue, 23 Dec 2025 05:58:25 GMT expires: - '-1' pragma: @@ -8359,12 +8874,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/f68485b2-12b7-476b-a75c-0f22341c812c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14977 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 88DE6991BC2E418F8A7CB21320625B1E Ref B: TYO201151004054 Ref C: 2024-08-26T08:59:07Z' + - 'Ref A: D36F499EB0AA4CDC879064AC4A8F41F0 Ref B: SG2AA1070304054 Ref C: 2025-12-23T05:58:25Z' status: code: 200 message: '' @@ -8382,14 +8901,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9312eab8-dcc5-4de8-b246-e744c35913b7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602595466945083&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=OVqlOlAXIuojFyvjT0ErXC2cai-9dO2dyj8Am9UKB6H1oa3jhgOubZcmC4X0FE3517fbzBbn8pkUHDnZdIONVqf_xiWWuzXxl2HNTUrl14vmabdKLK4fBLhXiTYJuDFajx6GGrkRUPJ31YfS1fWFbkRYeXrwB5zSq61emppmzzJZkOnabCy9xWBppF68ofQBfy4GV4ZHJkN9Xf6bSuRl55MjcQI--0WyVZKJuDS3BVYyLZ-qyR5FncKV9CBEFDCIcJ710ej1jB5Brf13evw76v18tI7JF0GtMyxo88cqUv-DI54ygeE9SuTH_pNGvCccObUcy2s2sDAFB-YHi0Uh3A&h=C3s4NYgExjDTikDd2mZeLzf2nlhGqOrpZt0Nw1vK-_0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c71835ea-2e01-4675-822b-7e4d3a55e3fa?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020663045089837&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=Em1uM6j_BU416RlW2Ny7Q4xKdt4AtyjFNpwPHL82bzw29jIRXiO0X9HgQJe68qqa1kNJ8LuNnOPHE_gR-gIwK3-ihbrSJftUb7e2ZtV2OzyuHF8zjTN85X7HiCcD_JmefTFXS0fnvjIpbpkBOzdfmwDGFU12-n1Q72q8D_uzsNWMs93iajaTSVWGTkCWYWwaTYn9m1-gC0LCOAsAQvUjoRumB_C8ZK0UqklY4-bHeSx5j59cwpB-Do0rVvLX4il7vcCWaHERKVPCUd4fE_ngFQHZIoHXWeLQotneRzrQF9Cg_63GI8mMK38jS7trcWPTxXs-P1zNbOG27Uit7pTZXA&h=MPsPXc6o7x-prLi3bFeIdMN5OLAQ7pr5NyM7DvRRCFo response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:59:06.3827919+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:59:14.4454339+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"9312eab8-dcc5-4de8-b246-e744c35913b7\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-23T05:58:24.4273307+00:00\",\r\n \"endTime\": + \"2025-12-23T05:58:32.2868525+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c71835ea-2e01-4675-822b-7e4d3a55e3fa\"\r\n}" headers: cache-control: - no-cache @@ -8398,7 +8917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:59:43 GMT + - Tue, 23 Dec 2025 05:59:03 GMT expires: - '-1' pragma: @@ -8409,12 +8928,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/1602ca4d-718b-44fc-9e87-3984f6b53c04 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2388A0816B20447F8CB6C7B6942EF33B Ref B: TYO201151004054 Ref C: 2024-08-26T08:59:44Z' + - 'Ref A: 1F1052E036594A7190E6A0E47E329F75 Ref B: SG2AA1070304060 Ref C: 2025-12-23T05:59:03Z' status: code: 200 message: '' @@ -8432,55 +8955,46 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"5ba9f118-1c4d-4601-a588-bf9fc8145858\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\ - ,\r\n \"capacity\": 2\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\"\ - : {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\ - Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \ - \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \ - \ \"computerNamePrefix\": \"vmss25980\",\r\n \"adminUsername\"\ - : \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \ - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\"\ - : {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n\ - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ - : {\"networkInterfaceConfigurations\":[{\"name\":\"vmss25980Nic\",\"properties\"\ - :{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\"\ - :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"vmss25980IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"c6612131-7b53-43e8-b454-69aaad859585\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"4f738d21-e9af-42db-af7b-7e1b56effc33\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Standard_B1ls\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n + \ },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss21406\",\r\n + \ \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": + true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n + \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n + \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss21406Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss21406IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"e644f48b-2bda-4554-b418-e2bc9ef9ba16\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2798' + - '2796' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:59:44 GMT + - Tue, 23 Dec 2025 05:59:04 GMT etag: - '"4"' expires: @@ -8493,12 +9007,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2394,Microsoft.Compute/GetVMScaleSetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6F8F277473074F1DB8D111BC594943E5 Ref B: TYO201151004054 Ref C: 2024-08-26T08:59:44Z' + - 'Ref A: CC9C5E22550148B59A65C3DC369C3985 Ref B: SG2AA1070301023 Ref C: 2025-12-23T05:59:04Z' status: code: 200 message: '' @@ -8516,55 +9032,46 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ - SystemAssigned\",\r\n \"principalId\": \"5ba9f118-1c4d-4601-a588-bf9fc8145858\"\ - ,\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n },\r\n\ - \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\ - ,\r\n \"capacity\": 2\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\"\ - : {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\ - Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \ - \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \ - \ \"computerNamePrefix\": \"vmss25980\",\r\n \"adminUsername\"\ - : \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \ - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \ - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\"\ - : {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\ - \n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n\ - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ - \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ - : {\"networkInterfaceConfigurations\":[{\"name\":\"vmss25980Nic\",\"properties\"\ - :{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\"\ - :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"vmss25980IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"c6612131-7b53-43e8-b454-69aaad859585\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:58:05.5379724+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"vmss2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n + \ \"principalId\": \"4f738d21-e9af-42db-af7b-7e1b56effc33\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"sku\": {\r\n \"name\": + \"Standard_B1ls\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n + \ },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss21406\",\r\n + \ \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": + true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n + \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n + \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n + \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss21406Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/networkSecurityGroups/vmss2NSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss21406IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_msi_no_scope000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"e644f48b-2bda-4554-b418-e2bc9ef9ba16\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2025-12-23T05:57:34.6922999+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2798' + - '2796' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:59:44 GMT + - Tue, 23 Dec 2025 05:59:06 GMT etag: - '"4"' expires: @@ -8577,12 +9084,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2393,Microsoft.Compute/GetVMScaleSetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9DFCE52D99D84ECC963B8E098AF996AA Ref B: TYO201151004054 Ref C: 2024-08-26T08:59:44Z' + - 'Ref A: 8D27974F722C419182E372CB03BD8A54 Ref B: SG2AA1040520062 Ref C: 2025-12-23T05:59:06Z' status: code: 200 message: '' From 82b10e670365aa1611170b1a46dbacd034b1b527 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 14:06:27 +0800 Subject: [PATCH 21/32] [style] - Update code styling --- src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py index 2284cac4b58..9d43efea8ce 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_vm_utils.py @@ -771,8 +771,7 @@ def assign_identity(cli_ctx, getter, setter, identity_role=None, identity_scope= # create role assignment: if identity_scope: - principal_id = resource.get('identity', {}).get('principalId') or \ - resource.get('identity', {}).get('principal_id') + principal_id = resource.get('identity', {}).get('principalId') or resource.get('identity', {}).get('principal_id') identity_role_id = resolve_role_id(cli_ctx, identity_role, identity_scope) assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments From 7798e90b7674a69ba44862e8891cb8d1e0057983 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 14:49:47 +0800 Subject: [PATCH 22/32] [Fix] - Fixed import patch function --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 2257a6461fb..94005b925bf 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -884,7 +884,7 @@ def setter(vm, external_identities=external_identities): if key not in command_args['mi_user_assigned']: command_args['mi_user_assigned'].append(key) - from .aaz.latest.vm._patch import Patch + from .aaz.latest.vm import Patch update_vm_identity = Patch(cli_ctx=cmd.cli_ctx)(command_args=command_args) LongRunningOperation(cmd.cli_ctx)(update_vm_identity) result = update_vm_identity.result() From 0a7ea10cb53dc959fc611e79e419f0aa41904ce0 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 23 Dec 2025 16:00:19 +0800 Subject: [PATCH 23/32] [Fix] - Added handling when assigning vm identities --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 94005b925bf..b9578ef7c80 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -880,7 +880,7 @@ def setter(vm, external_identities=external_identities): command_args['mi_user_assigned'].append(key) if identity.get('userAssignedIdentities'): - for key in identity.get('userAssignedIdentities').keys(): + for key in identity.get('userAssignedIdentities', {}).keys(): if key not in command_args['mi_user_assigned']: command_args['mi_user_assigned'].append(key) From ab15867e00b1c36cdbd07af16b542670358b56b0 Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 24 Dec 2025 13:39:09 +0800 Subject: [PATCH 24/32] [Fix] - Fixed schema output issue --- .../azure/cli/command_modules/vm/custom.py | 16 +++---- .../cli/command_modules/vm/operations/vm.py | 47 +++++++++++++++++++ 2 files changed, 54 insertions(+), 9 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index b9578ef7c80..3e9f7d6bff8 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -884,8 +884,8 @@ def setter(vm, external_identities=external_identities): if key not in command_args['mi_user_assigned']: command_args['mi_user_assigned'].append(key) - from .aaz.latest.vm import Patch - update_vm_identity = Patch(cli_ctx=cmd.cli_ctx)(command_args=command_args) + from .operations.vm import VMPatch + update_vm_identity = VMPatch(cli_ctx=cmd.cli_ctx)(command_args=command_args) LongRunningOperation(cmd.cli_ctx)(update_vm_identity) result = update_vm_identity.result() return result @@ -1387,7 +1387,7 @@ def get_instance_view(cmd, resource_group_name, vm_name, include_user_data=False def get_vm_by_aaz(cmd, resource_group_name, vm_name, expand=None): - from .aaz.latest.vm import Show + from .operations.vm import VMShow command_args = { 'resource_group': resource_group_name, 'vm_name': vm_name, @@ -1396,7 +1396,7 @@ def get_vm_by_aaz(cmd, resource_group_name, vm_name, expand=None): if expand: command_args['expand'] = expand - return Show(cli_ctx=cmd.cli_ctx)(command_args=command_args) + return VMShow(cli_ctx=cmd.cli_ctx)(command_args=command_args) def get_vm(cmd, resource_group_name, vm_name, expand=None): @@ -2568,6 +2568,7 @@ def _remove_identities_by_aaz(cmd, resource_group_name, name, identities, getter return None existing_emsis = [x.lower() for x in (existing_identity.get('userAssignedIdentities') or {}).keys()] + existing_identity['userAssignedIdentities'] = {} if identities: emsis_to_remove = [x.lower() for x in identities] @@ -2584,11 +2585,8 @@ def _remove_identities_by_aaz(cmd, resource_group_name, name, identities, getter elif existing_identity['type'] == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: existing_identity['type'] = IdentityType.SYSTEM_ASSIGNED.value - existing_identity['userAssignedIdentities'] = {} for emsis in identities: existing_identity['userAssignedIdentities'][emsis] = {} - else: - existing_identity['userAssignedIdentities'] = None if remove_system_assigned_identity: if existing_identity['type'] == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value \ @@ -2611,7 +2609,7 @@ def setter(resource_group_name, vm_name, vm): from ._vm_utils import IdentityType if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: command_args['mi_user_assigned'] = \ - vm.get('identity', {}).get('userAssignedIdentities', {}).keys() + ['UserAssigned'] + list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys()) + ['UserAssigned'] # NOTE: The literal 'UserAssigned' is intentionally appended as a marker for # VMIdentityRemove._format_content, which uses it to apply special handling # for purely user-assigned identities. It is not a real identity resource ID. @@ -2619,7 +2617,7 @@ def setter(resource_group_name, vm_name, vm): command_args['mi_user_assigned'] = [] command_args['mi_system_assigned'] = 'True' elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: - command_args['mi_user_assigned'] = vm.get('identity', {}).get('userAssignedIdentities', {}).keys() + command_args['mi_user_assigned'] = list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys()) command_args['mi_system_assigned'] = 'True' else: command_args['mi_user_assigned'] = [] diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py index 23876496677..d8c31cca956 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py +++ b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py @@ -158,8 +158,44 @@ def _output(self, *args, **kwargs): return result +class VMPatch(_VMPatch): + class VirtualMachinesUpdate(_VMPatch.VirtualMachinesUpdate): + # Override to solve key conflict of _schema_on_200.resources.Element.properties.type when deserializing + @classmethod + def _build_schema_on_200(cls): + schema = super()._build_schema_on_200() + + del schema.resources.Element.properties._fields['type'] + schema.resources.Element.properties.type = AAZStrType( + serialized_name="typePropertiesType", + ) + return schema + + def _output(self, *args, **kwargs): + from azure.cli.core.aaz import AAZUndefined, has_value + + # Resolve flatten conflict + # When the type field conflicts, the type in inner layer is ignored and the outer layer is applied + if has_value(self.ctx.vars.instance.resources): + for resource in self.ctx.vars.instance.resources: + if has_value(resource.type): + resource.type = AAZUndefined + + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class VMIdentityRemove(_VMPatch): def _output(self, *args, **kwargs): + from azure.cli.core.aaz import AAZUndefined, has_value + + # Resolve flatten conflict + # When the type field conflicts, the type in inner layer is ignored and the outer layer is applied + if has_value(self.ctx.vars.instance.resources): + for resource in self.ctx.vars.instance.resources: + if has_value(resource.type): + resource.type = AAZUndefined + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) identity = result.get('identity') @@ -178,6 +214,17 @@ def _output(self, *args, **kwargs): return result class VirtualMachinesUpdate(_VMPatch.VirtualMachinesUpdate): + # Override to solve key conflict of _schema_on_200.resources.Element.properties.type when deserializing + @classmethod + def _build_schema_on_200(cls): + schema = super()._build_schema_on_200() + + del schema.resources.Element.properties._fields['type'] + schema.resources.Element.properties.type = AAZStrType( + serialized_name="typePropertiesType", + ) + return schema + def _format_content(self, content): if isinstance(content, str): content = json.loads(content) From 794c0439fa2320ba9017659053ae429c434bda8c Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 24 Dec 2025 13:51:25 +0800 Subject: [PATCH 25/32] [Test] - Fixed test case failure and re-record test case --- .../test_sqlvm_aad_auth_negative.yaml | 13792 ++++++++-------- .../sqlvm/tests/latest/test_sqlvm_commands.py | 2 +- 2 files changed, 6652 insertions(+), 7142 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_aad_auth_negative.yaml b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_aad_auth_negative.yaml index 29c6fff6d0f..0e7b22f9b9a 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_aad_auth_negative.yaml +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/recordings/test_sqlvm_aad_auth_negative.yaml @@ -13,13 +13,13 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.250227\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.250227\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.251107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.251107\"\r\n \ }\r\n]" headers: cache-control: @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:03 GMT + - Wed, 24 Dec 2025 05:40:07 GMT expires: - '-1' pragma: @@ -41,13 +41,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/81aff512-14cb-4772-9b3c-1c0b72c73372 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/malaysiasouth/4594f42d-ebf4-46e9-855a-8210561832ee x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F9F0E6A3EFFA4F28A6C3F7BEAB6E0838 Ref B: TYO201151005052 Ref C: 2025-04-02T09:27:04Z' + - 'Ref A: 1894BFB0FCC54057B5354E2CF1398C77 Ref B: SG2AA1070303036 Ref C: 2025-12-24T05:40:05Z' status: code: 200 message: OK @@ -65,9 +65,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions/15.0.250227?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions/15.0.251107?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -80,9 +80,9 @@ interactions: \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n - \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.250227\",\r\n \"id\": - \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.250227\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-17T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.251107\",\r\n \"id\": + \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.251107\"\r\n}" headers: cache-control: - no-cache @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:05 GMT + - Wed, 24 Dec 2025 05:40:07 GMT expires: - '-1' pragma: @@ -103,13 +103,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b451e87d-7f60-439e-9bee-56cc48a62676 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e87ffe0a-c7d4-40b9-b67c-1b85974b3e0c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996 + - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73980 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9AF30F63414C487FA9915E8D35ADD1C6 Ref B: TYO201151006060 Ref C: 2025-04-02T09:27:05Z' + - 'Ref A: C5F243ED2BF24C7D9CF3D8A7CAFB86BC Ref B: SG2AA1070302023 Ref C: 2025-12-24T05:40:07Z' status: code: 200 message: OK @@ -127,7 +127,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -141,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:05 GMT + - Wed, 24 Dec 2025 05:40:09 GMT expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D5B357DB5C3749CDBA4FDF3CCFAABC78 Ref B: TYO201100114025 Ref C: 2025-04-02T09:27:05Z' + - 'Ref A: D3FD0FF4B9F344EAB8EADC3BC1AED9DA Ref B: SG2AA1040518011 Ref C: 2025-12-24T05:40:08Z' status: code: 200 message: OK @@ -173,2636 +173,13 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2024-11-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_B1ls\",\r\n - \ \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4096,\r\n \"memoryInMB\": 512,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_B1ms\",\r\n \"numberOfCores\": 1,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n - \ \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": 1,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n - \ \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": 2,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n - \ \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": 2,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n - \ \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B12ms\",\r\n \"numberOfCores\": 12,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 98304,\r\n - \ \"memoryInMB\": 49152,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ms\",\r\n \"numberOfCores\": 16,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B20ms\",\r\n \"numberOfCores\": 20,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 163840,\r\n - \ \"memoryInMB\": 81920,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_E2_v4\",\r\n \"numberOfCores\": 2,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4_v4\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8_v4\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2d_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4d_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8d_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16d_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20d_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32d_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2d_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4d_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8d_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16d_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32d_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48d_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64d_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4_v4\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8_v4\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ds_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1024000,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v3\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v3\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": - 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2d_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4d_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8d_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16d_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32d_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48d_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64d_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96d_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4_v5\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8_v5\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104ids_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48d_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64d_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2d_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4d_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8d_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16d_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20d_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32d_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48d_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64d_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96d_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104id_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104is_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4_v5\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8_v5\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104i_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS1\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bs_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4bs_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8bs_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16bs_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bs_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bs_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4bds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8bds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16bds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4lds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8lds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16lds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32lds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48lds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64lds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20a_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ias_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ads_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80is_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8as_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16as_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32as_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48as_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64as_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M8-2ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8-4ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-4ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-8ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-8ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-16ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128ms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128s_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192ims_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192is_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32dms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64dms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ds_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128dms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ds_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192ids_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV4ads_V710_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_NV8ads_V710_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_NV12ads_V710_v5\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 6\r\n },\r\n - \ {\r\n \"name\": \"Standard_NV24ads_V710_v5\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV28adms_V710_v5\",\r\n \"numberOfCores\": - 28,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 14\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2ls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32ls_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v2\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ias_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96iads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4as_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4as_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96pls_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4plds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8plds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16plds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32plds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48plds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64plds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96plds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ls_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4lds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8lds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16lds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32lds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48lds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64lds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128lds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D192ds_v6\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96isr_H100_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 1945600,\r\n \"maxDataDiskCount\": - 16\r\n },\r\n {\r\n \"name\": \"Standard_E96ias_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"numberOfCores\": - 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 753664,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1509376,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV6s_v2\",\r\n \"numberOfCores\": - 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 753664,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV12s_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1509376,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV24s_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV12s_v3\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 753664,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1509376,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96pds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ps_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ps_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ps_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ps_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48pds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64pds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96pds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96is_MI300X_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": - 16\r\n },\r\n {\r\n \"name\": \"Standard_ND96isr_MI300X_v5\",\r\n - \ \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": - 16\r\n },\r\n {\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M208s_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2918400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_NC24ads_A100_v4\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 225280,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC48ads_A100_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC96ads_A100_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 901120,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC40ads_H100_v5\",\r\n \"numberOfCores\": - 40,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 327680,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC80adis_H100_v5\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV6ads_A10_v5\",\r\n \"numberOfCores\": - 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 184320,\r\n \"memoryInMB\": 56320,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV12ads_A10_v5\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 368640,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV18ads_A10_v5\",\r\n \"numberOfCores\": - 18,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 737280,\r\n \"memoryInMB\": 225280,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV36adms_A10_v5\",\r\n \"numberOfCores\": - 36,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2949120,\r\n \"memoryInMB\": 901120,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV36ads_A10_v5\",\r\n \"numberOfCores\": - 36,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1474560,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV72ads_A10_v5\",\r\n \"numberOfCores\": - 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2949120,\r\n \"memoryInMB\": 901120,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1ds_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ds_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ds_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ds_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ds_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24ds_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ds_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ds_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '178037' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 02 Apr 2025 09:27:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/23914875-b813-4164-a586-5ddbce434927 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetSubscriptionInfoSubscriptionMaximum;357 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B66E70D4E17749E4ACE36B7F44EE28C0 Ref B: TYO201151006060 Ref C: 2025-04-02T09:27:06Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -l -g -n --admin-username --admin-password --image --size --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.250227\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.250227\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.251107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.251107\"\r\n \ }\r\n]" headers: cache-control: @@ -2812,7 +189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:08 GMT + - Wed, 24 Dec 2025 05:40:09 GMT expires: - '-1' pragma: @@ -2824,13 +201,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0f0959fe-43fd-4eed-9e6e-9cce4d733df1 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/76d4a6cf-8cda-4811-86a1-e01299f9dcc3 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F208EF6404DE4B1FB5C4C76BE58750E9 Ref B: TYO201100115023 Ref C: 2025-04-02T09:27:07Z' + - 'Ref A: 3CA746585046426A91707B52C2520725 Ref B: SG2AA1070302054 Ref C: 2025-12-24T05:40:09Z' status: code: 200 message: OK @@ -2848,9 +225,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions/15.0.250227?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions/15.0.251107?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -2863,9 +240,9 @@ interactions: \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n - \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.250227\",\r\n \"id\": - \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.250227\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-17T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.251107\",\r\n \"id\": + \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.251107\"\r\n}" headers: cache-control: - no-cache @@ -2874,7 +251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:08 GMT + - Wed, 24 Dec 2025 05:40:10 GMT expires: - '-1' pragma: @@ -2886,13 +263,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/39ef7bbf-a694-4217-b963-fcca9991bb6f + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/01f5de46-e683-4ec2-8c27-4466c25e041c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73979 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C8CE54CCE2B8443DA580FB09025555CA Ref B: TYO201100114025 Ref C: 2025-04-02T09:27:08Z' + - 'Ref A: A1EB905E938B407AAB118D2B26208F89 Ref B: SG2AA1040516031 Ref C: 2025-12-24T05:40:10Z' status: code: 200 message: OK @@ -2910,13 +287,13 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.250227\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.250227\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.251107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.251107\"\r\n \ }\r\n]" headers: cache-control: @@ -2926,7 +303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:09 GMT + - Wed, 24 Dec 2025 05:40:10 GMT expires: - '-1' pragma: @@ -2938,13 +315,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b3e03dca-0dc2-4768-be02-4e94a9e59c14 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/6cd112a8-5a4d-424a-ad3a-f2c55edcecac x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15986,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C46563927F6B411D97050017C289392A Ref B: TYO201151005054 Ref C: 2025-04-02T09:27:09Z' + - 'Ref A: 335171C735D84A8BB7A73BE851E14E68 Ref B: SG2AA1040519036 Ref C: 2025-12-24T05:40:11Z' status: code: 200 message: OK @@ -2962,9 +339,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions/15.0.250227?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2019-ws2022/skus/enterprise/versions/15.0.251107?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -2977,9 +354,9 @@ interactions: \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInBytes\": 136367309312\r\n - \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-03T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.250227\",\r\n \"id\": - \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.250227\"\r\n}" + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-17T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"15.0.251107\",\r\n \"id\": + \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2019-ws2022/Skus/enterprise/Versions/15.0.251107\"\r\n}" headers: cache-control: - no-cache @@ -2988,7 +365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:10 GMT + - Wed, 24 Dec 2025 05:40:11 GMT expires: - '-1' pragma: @@ -3000,13 +377,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/4f7f826e-7786-4746-9b0d-17c96f5e67ab + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/malaysiasouth/65954e8b-5a95-4897-aab0-bc634243042d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73986 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73978 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 33359CEED54C4067993815BFB0016ED5 Ref B: TYO201151002025 Ref C: 2025-04-02T09:27:10Z' + - 'Ref A: AE46005FB31E40B98B22148BF23C98CF Ref B: SG2AA1070301062 Ref C: 2025-12-24T05:40:11Z' status: code: 200 message: OK @@ -3033,7 +410,7 @@ interactions: "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"}}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "clisqlvm000002", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS2_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -3052,29 +429,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3105' + - '3103' Content-Type: - application/json ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_Q7p77uMUb0B22MjeFP3IttZNohhlcGEt","name":"vm_deploy_Q7p77uMUb0B22MjeFP3IttZNohhlcGEt","type":"Microsoft.Resources/deployments","properties":{"templateHash":"607920869444564677","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-02T09:27:12.6292703Z","duration":"PT0.0008862S","correlationId":"266df8d8-d964-446a-a69a-e0007fcc1b26","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_WCqHnkw632jMBS61knxyiEEz5cCVa8e4","name":"vm_deploy_WCqHnkw632jMBS61knxyiEEz5cCVa8e4","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12521972517919304786","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-24T05:40:18.1866047Z","duration":"PT0.0006101S","correlationId":"2efb8354-eef7-4c18-8840-bac35763b36a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_Q7p77uMUb0B22MjeFP3IttZNohhlcGEt/operationStatuses/08584580208528349909?api-version=2024-11-01&t=638791828373012337&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=aik8sFGMPIxyWYFajwzdsKZ3RUygNrznbNFK5rcCEKoXqYbOZnaL01uOWcfyHpWUgs5IFbGdJ4GP870clyhJwtPnpse-98l8kggu4CCcDwM1V-8qCwGVCwu04075chX7avgMHm5rMqvcDSUYX77FuSdYkgpRDdlKNLGc3u0-xPDclE-fmzsRWHTRt2KZK_ine7e0l0lE4OkyHogZA1g9veEPAkGpd46hTUPelfhaBn9oAxZTKYvjkmr84fbRI5yr4HxSFm01ZsHJRjqfZ3GJg1GA00pXWVF5gTJ7eNaKoIpDvUq16sYl_OUZsmhxDUHpqntECmuJwv-e1TWIY0ZgDg&h=bfR4WSa2aQtzO2IqQJ384Sgt0rXWGAoU1kN1iERV5pE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_WCqHnkw632jMBS61knxyiEEz5cCVa8e4/operationStatuses/08584350520672881873?api-version=2024-11-01&t=639021516229522744&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=CpCnJ3kVcajKhn2UE7JV9Qipx1r8SVzLvuZQxF0dVsZEOcNvrKm_trNTslCkOT4pAI5o_K7PwLix3vj6MY9uQFwrqoCBBVdxVlpmA9qEipEBqzOtvWPbW51Ww6MPX-UhAUF9zI0M8WNJDLi3Qz8WRQFBa7yhi5WhDw8LlDzUbBlPTlcpSX6AIw_t4XZVx_MXi5mLjbLIJ1FUo8AOrMs0a-0vZxI3f0q5Z51UToigs_edcoF_pqc5B1NRvqYfDRvzIhxwALjfNBaUn3GMV--JPni1tieK8IReObu_DaWQhrZGTATvsA-sXJVpw1Ju4Tvyem_i20TX8izeHNcEIzZbug&h=MsZu_UxzPfS9lz7_Q3W_QfjPgF0YSJX9cO-7vAdQo2s cache-control: - no-cache content-length: - - '2555' + - '2557' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:27:16 GMT + - Wed, 24 Dec 2025 05:40:22 GMT expires: - '-1' pragma: @@ -3086,13 +463,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.280.0 + - 1.560.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: E8547594C43240B784B6D4FEF85AB451 Ref B: TYO201100115029 Ref C: 2025-04-02T09:27:11Z' + - 'Ref A: 740D8DD726074D36801D9689EF5149AE Ref B: SG2AA1070302054 Ref C: 2025-12-24T05:40:12Z' status: code: 201 message: Created @@ -3110,101 +487,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580208528349909?api-version=2024-11-01&t=638791828373012337&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=aik8sFGMPIxyWYFajwzdsKZ3RUygNrznbNFK5rcCEKoXqYbOZnaL01uOWcfyHpWUgs5IFbGdJ4GP870clyhJwtPnpse-98l8kggu4CCcDwM1V-8qCwGVCwu04075chX7avgMHm5rMqvcDSUYX77FuSdYkgpRDdlKNLGc3u0-xPDclE-fmzsRWHTRt2KZK_ine7e0l0lE4OkyHogZA1g9veEPAkGpd46hTUPelfhaBn9oAxZTKYvjkmr84fbRI5yr4HxSFm01ZsHJRjqfZ3GJg1GA00pXWVF5gTJ7eNaKoIpDvUq16sYl_OUZsmhxDUHpqntECmuJwv-e1TWIY0ZgDg&h=bfR4WSa2aQtzO2IqQJ384Sgt0rXWGAoU1kN1iERV5pE - response: - body: - string: '{"status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 02 Apr 2025 09:27:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6A5C40BB9532415FB5B77AF3DC4A85E5 Ref B: TYO201100115029 Ref C: 2025-04-02T09:27:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -l -g -n --admin-username --admin-password --image --size --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580208528349909?api-version=2024-11-01&t=638791828373012337&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=aik8sFGMPIxyWYFajwzdsKZ3RUygNrznbNFK5rcCEKoXqYbOZnaL01uOWcfyHpWUgs5IFbGdJ4GP870clyhJwtPnpse-98l8kggu4CCcDwM1V-8qCwGVCwu04075chX7avgMHm5rMqvcDSUYX77FuSdYkgpRDdlKNLGc3u0-xPDclE-fmzsRWHTRt2KZK_ine7e0l0lE4OkyHogZA1g9veEPAkGpd46hTUPelfhaBn9oAxZTKYvjkmr84fbRI5yr4HxSFm01ZsHJRjqfZ3GJg1GA00pXWVF5gTJ7eNaKoIpDvUq16sYl_OUZsmhxDUHpqntECmuJwv-e1TWIY0ZgDg&h=bfR4WSa2aQtzO2IqQJ384Sgt0rXWGAoU1kN1iERV5pE - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 02 Apr 2025 09:27:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 54A12C051E8B4ADFAF7FA375D627C6AE Ref B: TYO201100115029 Ref C: 2025-04-02T09:27:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -l -g -n --admin-username --admin-password --image --size --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580208528349909?api-version=2024-11-01&t=638791828373012337&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=aik8sFGMPIxyWYFajwzdsKZ3RUygNrznbNFK5rcCEKoXqYbOZnaL01uOWcfyHpWUgs5IFbGdJ4GP870clyhJwtPnpse-98l8kggu4CCcDwM1V-8qCwGVCwu04075chX7avgMHm5rMqvcDSUYX77FuSdYkgpRDdlKNLGc3u0-xPDclE-fmzsRWHTRt2KZK_ine7e0l0lE4OkyHogZA1g9veEPAkGpd46hTUPelfhaBn9oAxZTKYvjkmr84fbRI5yr4HxSFm01ZsHJRjqfZ3GJg1GA00pXWVF5gTJ7eNaKoIpDvUq16sYl_OUZsmhxDUHpqntECmuJwv-e1TWIY0ZgDg&h=bfR4WSa2aQtzO2IqQJ384Sgt0rXWGAoU1kN1iERV5pE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584350520672881873?api-version=2024-11-01&t=639021516229522744&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=CpCnJ3kVcajKhn2UE7JV9Qipx1r8SVzLvuZQxF0dVsZEOcNvrKm_trNTslCkOT4pAI5o_K7PwLix3vj6MY9uQFwrqoCBBVdxVlpmA9qEipEBqzOtvWPbW51Ww6MPX-UhAUF9zI0M8WNJDLi3Qz8WRQFBa7yhi5WhDw8LlDzUbBlPTlcpSX6AIw_t4XZVx_MXi5mLjbLIJ1FUo8AOrMs0a-0vZxI3f0q5Z51UToigs_edcoF_pqc5B1NRvqYfDRvzIhxwALjfNBaUn3GMV--JPni1tieK8IReObu_DaWQhrZGTATvsA-sXJVpw1Ju4Tvyem_i20TX8izeHNcEIzZbug&h=MsZu_UxzPfS9lz7_Q3W_QfjPgF0YSJX9cO-7vAdQo2s response: body: string: '{"status":"Running"}' @@ -3216,7 +501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:28:18 GMT + - Wed, 24 Dec 2025 05:40:24 GMT expires: - '-1' pragma: @@ -3230,7 +515,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 58FD40EC6AFB4A57AEF3A86B50993171 Ref B: TYO201100115029 Ref C: 2025-04-02T09:28:18Z' + - 'Ref A: 3BADD2FC69174F11BDB4BF0C8B600036 Ref B: SG2AA1040520023 Ref C: 2025-12-24T05:40:23Z' status: code: 200 message: OK @@ -3248,9 +533,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580208528349909?api-version=2024-11-01&t=638791828373012337&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=aik8sFGMPIxyWYFajwzdsKZ3RUygNrznbNFK5rcCEKoXqYbOZnaL01uOWcfyHpWUgs5IFbGdJ4GP870clyhJwtPnpse-98l8kggu4CCcDwM1V-8qCwGVCwu04075chX7avgMHm5rMqvcDSUYX77FuSdYkgpRDdlKNLGc3u0-xPDclE-fmzsRWHTRt2KZK_ine7e0l0lE4OkyHogZA1g9veEPAkGpd46hTUPelfhaBn9oAxZTKYvjkmr84fbRI5yr4HxSFm01ZsHJRjqfZ3GJg1GA00pXWVF5gTJ7eNaKoIpDvUq16sYl_OUZsmhxDUHpqntECmuJwv-e1TWIY0ZgDg&h=bfR4WSa2aQtzO2IqQJ384Sgt0rXWGAoU1kN1iERV5pE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584350520672881873?api-version=2024-11-01&t=639021516229522744&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=CpCnJ3kVcajKhn2UE7JV9Qipx1r8SVzLvuZQxF0dVsZEOcNvrKm_trNTslCkOT4pAI5o_K7PwLix3vj6MY9uQFwrqoCBBVdxVlpmA9qEipEBqzOtvWPbW51Ww6MPX-UhAUF9zI0M8WNJDLi3Qz8WRQFBa7yhi5WhDw8LlDzUbBlPTlcpSX6AIw_t4XZVx_MXi5mLjbLIJ1FUo8AOrMs0a-0vZxI3f0q5Z51UToigs_edcoF_pqc5B1NRvqYfDRvzIhxwALjfNBaUn3GMV--JPni1tieK8IReObu_DaWQhrZGTATvsA-sXJVpw1Ju4Tvyem_i20TX8izeHNcEIzZbug&h=MsZu_UxzPfS9lz7_Q3W_QfjPgF0YSJX9cO-7vAdQo2s response: body: string: '{"status":"Running"}' @@ -3262,7 +547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:28:48 GMT + - Wed, 24 Dec 2025 05:40:54 GMT expires: - '-1' pragma: @@ -3276,7 +561,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8CAE7B0592734D6F80ECBAEB79A80641 Ref B: TYO201100115029 Ref C: 2025-04-02T09:28:49Z' + - 'Ref A: BC6D68C9A88545E791C4CFE824274A98 Ref B: SG2AA1070301023 Ref C: 2025-12-24T05:40:54Z' status: code: 200 message: OK @@ -3294,9 +579,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580208528349909?api-version=2024-11-01&t=638791828373012337&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=aik8sFGMPIxyWYFajwzdsKZ3RUygNrznbNFK5rcCEKoXqYbOZnaL01uOWcfyHpWUgs5IFbGdJ4GP870clyhJwtPnpse-98l8kggu4CCcDwM1V-8qCwGVCwu04075chX7avgMHm5rMqvcDSUYX77FuSdYkgpRDdlKNLGc3u0-xPDclE-fmzsRWHTRt2KZK_ine7e0l0lE4OkyHogZA1g9veEPAkGpd46hTUPelfhaBn9oAxZTKYvjkmr84fbRI5yr4HxSFm01ZsHJRjqfZ3GJg1GA00pXWVF5gTJ7eNaKoIpDvUq16sYl_OUZsmhxDUHpqntECmuJwv-e1TWIY0ZgDg&h=bfR4WSa2aQtzO2IqQJ384Sgt0rXWGAoU1kN1iERV5pE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584350520672881873?api-version=2024-11-01&t=639021516229522744&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=CpCnJ3kVcajKhn2UE7JV9Qipx1r8SVzLvuZQxF0dVsZEOcNvrKm_trNTslCkOT4pAI5o_K7PwLix3vj6MY9uQFwrqoCBBVdxVlpmA9qEipEBqzOtvWPbW51Ww6MPX-UhAUF9zI0M8WNJDLi3Qz8WRQFBa7yhi5WhDw8LlDzUbBlPTlcpSX6AIw_t4XZVx_MXi5mLjbLIJ1FUo8AOrMs0a-0vZxI3f0q5Z51UToigs_edcoF_pqc5B1NRvqYfDRvzIhxwALjfNBaUn3GMV--JPni1tieK8IReObu_DaWQhrZGTATvsA-sXJVpw1Ju4Tvyem_i20TX8izeHNcEIzZbug&h=MsZu_UxzPfS9lz7_Q3W_QfjPgF0YSJX9cO-7vAdQo2s response: body: string: '{"status":"Succeeded"}' @@ -3308,7 +593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:19 GMT + - Wed, 24 Dec 2025 05:41:25 GMT expires: - '-1' pragma: @@ -3322,7 +607,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 612AB87CB0964E4F88CC0C7D0213091D Ref B: TYO201100115029 Ref C: 2025-04-02T09:29:20Z' + - 'Ref A: D01C4000D75C441C962FF0161C31F081 Ref B: SG2AA1070306054 Ref C: 2025-12-24T05:41:25Z' status: code: 200 message: OK @@ -3340,21 +625,21 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_Q7p77uMUb0B22MjeFP3IttZNohhlcGEt","name":"vm_deploy_Q7p77uMUb0B22MjeFP3IttZNohhlcGEt","type":"Microsoft.Resources/deployments","properties":{"templateHash":"607920869444564677","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-02T09:29:07.6854094Z","correlationId":"266df8d8-d964-446a-a69a-e0007fcc1b26","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_WCqHnkw632jMBS61knxyiEEz5cCVa8e4","name":"vm_deploy_WCqHnkw632jMBS61knxyiEEz5cCVa8e4","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12521972517919304786","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-24T05:41:03.4997513Z","duration":"PT45.3131466S","correlationId":"2efb8354-eef7-4c18-8840-bac35763b36a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clisqlvm000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3393' + - '3422' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:20 GMT + - Wed, 24 Dec 2025 05:41:26 GMT expires: - '-1' pragma: @@ -3368,7 +653,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2410668654E1474AA745A924EA198964 Ref B: TYO201100115029 Ref C: 2025-04-02T09:29:21Z' + - 'Ref A: AC88B7D34F67419D931A5639E101E07D Ref B: SG2AA1040512040 Ref C: 2025-12-24T05:41:26Z' status: code: 200 message: OK @@ -3386,7 +671,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002?$expand=instanceView&api-version=2025-04-01 response: @@ -3394,16 +679,16 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"7910c3d4-362f-4ce1-961c-f76ac6db94fb\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"474b7bb7-45e4-41ac-8781-6da77a277c64\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2019-ws2022\",\r\n \"sku\": \"enterprise\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"15.0.250227\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"15.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000002_OsDisk_1_7b108f74c7bd4cbbb62e40593d601a06\",\r\n \"createOption\": + \"clisqlvm000002_disk1_64444a03cd78419bb8ea070d656f992b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000002_OsDisk_1_7b108f74c7bd4cbbb62e40593d601a06\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000002_disk1_64444a03cd78419bb8ea070d656f992b\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000002\",\r\n \"adminUsername\": @@ -3414,33 +699,35 @@ interactions: true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n - \ \"displayStatus\": \"Not Ready\",\r\n \"message\": - \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2025-04-02T09:29:23+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"clisqlvm000002_OsDisk_1_7b108f74c7bd4cbbb62e40593d601a06\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"clisqlvm000002\",\r\n + \ \"osName\": \"Windows Server 2022 Datacenter\",\r\n \"osVersion\": + \"10.0.20348.4405\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.7.41491.1183\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Ready\",\r\n \"message\": \"GuestAgent is running and processing + the extensions.\",\r\n \"time\": \"2025-12-24T05:41:26.502+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n + \ \"name\": \"clisqlvm000002_disk1_64444a03cd78419bb8ea070d656f992b\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-04-02T09:27:37.170864+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-24T05:40:37.229357+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-04-02T09:29:05.281194+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-24T05:40:56.5265656+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-04-02T09:27:35.3427406+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-24T05:40:35.1355701+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3305' + - '3434' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:22 GMT + - Wed, 24 Dec 2025 05:41:27 GMT expires: - '-1' pragma: @@ -3454,11 +741,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23984,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D66C3BB9CC8B4B5ABF7FA586C36E54F3 Ref B: TYO201151004029 Ref C: 2025-04-02T09:29:23Z' + - 'Ref A: AE5D59A70E5D4A63BA786320C32CE966 Ref B: SG2AA1040518036 Ref C: 2025-12-24T05:41:27Z' status: code: 200 message: '' @@ -3476,23 +763,23 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic?api-version=2022-01-01 response: body: - string: '{"name":"clisqlvm000002VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","etag":"W/\"f2f8ea08-0ed8-4792-89fc-62742585f83a\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2cd3fd45-569d-4987-9711-642090bc1051","ipConfigurations":[{"name":"ipconfigclisqlvm000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002","etag":"W/\"f2f8ea08-0ed8-4792-89fc-62742585f83a\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"vdzukcraicse5ast51mf4u4pod.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-01-9D-F4","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' + string: '{"name":"clisqlvm000002VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic","etag":"W/\"893d0411-2023-40e6-9265-de1f807de5f2\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"05ccd2bb-748b-476d-b659-33639f27e121","ipConfigurations":[{"name":"ipconfigclisqlvm000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002","etag":"W/\"893d0411-2023-40e6-9265-de1f807de5f2\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"p5gybo4fcf4u3djwfgvj13agpf.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-30-A4-56","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000002NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2089' + - '2090' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:23 GMT + - Wed, 24 Dec 2025 05:41:28 GMT etag: - - W/"f2f8ea08-0ed8-4792-89fc-62742585f83a" + - W/"893d0411-2023-40e6-9265-de1f807de5f2" expires: - '-1' pragma: @@ -3504,11 +791,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e270a3b8-d512-4765-ab8d-25b383f62f9c + - b6ef352a-a75a-416d-ac59-dd4a8b74f3f5 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9088940EB7134FA09F97D2A3BB119DA4 Ref B: TYO201151005031 Ref C: 2025-04-02T09:29:23Z' + - 'Ref A: 3E810C22AD584C6D85AAFE1BEF34ACAC Ref B: SG2AA1070306034 Ref C: 2025-12-24T05:41:28Z' status: code: 200 message: OK @@ -3526,12 +813,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"clisqlvm000002PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","etag":"W/\"0a578f6c-cc79-4ea4-8d0e-ce5b82a3870e\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a9aa4429-dc49-49a0-b4f1-4ab89ae9152a","ipAddress":"20.245.232.207","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"clisqlvm000002PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000002PublicIP","etag":"W/\"5eb652a8-3cea-46ce-b908-5f65c585d0e7\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"158ef17e-ba0c-4aa4-8184-34f12994fee3","ipAddress":"172.185.165.48","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000002VMNic/ipConfigurations/ipconfigclisqlvm000002"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache @@ -3540,9 +827,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:25 GMT + - Wed, 24 Dec 2025 05:41:29 GMT etag: - - W/"0a578f6c-cc79-4ea4-8d0e-ce5b82a3870e" + - W/"5eb652a8-3cea-46ce-b908-5f65c585d0e7" expires: - '-1' pragma: @@ -3554,11 +841,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ffa6c9d4-eb0d-4901-94d5-5c937a97eebc + - f61877fb-dc4c-4354-8239-4a3750e8948b x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DF6B8D169C3947499FA521CA3D198EC6 Ref B: TYO201100114023 Ref C: 2025-04-02T09:29:25Z' + - 'Ref A: A5ECADF7052E4410ABE1F2DFAA348351 Ref B: SG2AA1040516025 Ref C: 2025-12-24T05:41:29Z' status: code: 200 message: OK @@ -3576,13 +863,13 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.250313\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.250313\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.251107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.251107\"\r\n \ }\r\n]" headers: cache-control: @@ -3592,7 +879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:27 GMT + - Wed, 24 Dec 2025 05:41:30 GMT expires: - '-1' pragma: @@ -3604,13 +891,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/0e48759f-4333-4abc-b87c-58048e315803 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/27ba1185-aad3-490a-9be7-1e2f2e722f2c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15978,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '3748' x-msedge-ref: - - 'Ref A: 828647D4A67B4320B894A876A6DB7A2D Ref B: TYO201151001054 Ref C: 2025-04-02T09:29:27Z' + - 'Ref A: 703E3921424742E2A36BE640BF94AE8E Ref B: SG2AA1040515031 Ref C: 2025-12-24T05:41:30Z' status: code: 200 message: OK @@ -3628,9 +915,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions/16.0.250313?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions/16.0.251107?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -3645,9 +932,9 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-14T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.250313\",\r\n \"id\": - \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.250313\"\r\n}" + 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-15T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.251107\",\r\n \"id\": + \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.251107\"\r\n}" headers: cache-control: - no-cache @@ -3656,7 +943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:29 GMT + - Wed, 24 Dec 2025 05:41:31 GMT expires: - '-1' pragma: @@ -3668,13 +955,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/06758d44-aa37-4a16-8d83-37bb79287a26 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/d635e1ee-3e7c-4af1-b262-53a309a38b80 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12983,Microsoft.Compute/GetVMImageFromLocation30Min;73983 + - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73976 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 84BE12EED30248E68F4CE34D5D18C3C1 Ref B: TYO201100116033 Ref C: 2025-04-02T09:29:29Z' + - 'Ref A: F7FDD0A5568A41CBBE1D6B49AB4D22EF Ref B: SG2AA1070303054 Ref C: 2025-12-24T05:41:30Z' status: code: 200 message: OK @@ -3692,12 +979,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: - string: '{"value":[{"name":"clisqlvm000002VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","etag":"W/\"30d39862-0f73-4221-8ab2-3fc422920700\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0a45f3a8-4020-4fa4-8253-fed85f53cf73","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm000002Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet","etag":"W/\"30d39862-0f73-4221-8ab2-3fc422920700\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SQLVM_CLI_TEST_AADPCIVQIOUAL4KXI26VCGHDFZ5F4AX7ZN4546MNGRU2IZSBSVZ2452Z2UDH/providers/Microsoft.Network/networkInterfaces/CLISQLVMTLP6343VMNIC/ipConfigurations/IPCONFIGCLISQLVMTLP6343"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' + string: '{"value":[{"name":"clisqlvm000002VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET","etag":"W/\"7df01770-bdf2-4783-a87c-79512f78c686\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bb80cd7f-11c5-4e7d-8d36-29aa9df4067d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm000002Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet","etag":"W/\"7df01770-bdf2-4783-a87c-79512f78c686\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SQLVM_CLI_TEST_AADBYYQYSPEYUWCWHYYLUIW7L4XTNLZKJ4CVCE5HOAPI6AZVLWR6VN3MVJRT/providers/Microsoft.Network/networkInterfaces/CLISQLVMT7B3FCOVMNIC/ipConfigurations/IPCONFIGCLISQLVMT7B3FCO"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}' headers: cache-control: - no-cache @@ -3706,7 +993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:30 GMT + - Wed, 24 Dec 2025 05:41:31 GMT expires: - '-1' pragma: @@ -3718,13 +1005,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ea1988e-2710-4878-823c-889d14c0e817 + - b1a39d63-45ea-4e6a-9fdb-c2f967e7bb03 x-ms-original-request-ids: - - 501751dc-4475-4c8f-a053-ecb0351a539f + - c14931e4-f548-4b24-8a09-7faaf4fe06ab x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 85C7E17F52EA4AFDA22DB65253EC340D Ref B: TYO201151003060 Ref C: 2025-04-02T09:29:30Z' + - 'Ref A: 9D8C3AA0B3A54F789290E1F7834D3746 Ref B: SG2AA1040518054 Ref C: 2025-12-24T05:41:31Z' status: code: 200 message: OK @@ -3742,2636 +1029,13 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2024-11-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_B1ls\",\r\n - \ \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4096,\r\n \"memoryInMB\": 512,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_B1ms\",\r\n \"numberOfCores\": 1,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n - \ \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": 1,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n - \ \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": 2,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n - \ \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": 2,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n - \ \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B12ms\",\r\n \"numberOfCores\": 12,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 98304,\r\n - \ \"memoryInMB\": 49152,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ms\",\r\n \"numberOfCores\": 16,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B20ms\",\r\n \"numberOfCores\": 20,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 163840,\r\n - \ \"memoryInMB\": 81920,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_E2_v4\",\r\n \"numberOfCores\": 2,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4_v4\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8_v4\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2d_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4d_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8d_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16d_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20d_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32d_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2d_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4d_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8d_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16d_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32d_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48d_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64d_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4_v4\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8_v4\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ds_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ds_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ds_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ds_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1024000,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v3\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v3\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": - 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2d_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4d_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8d_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16d_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32d_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48d_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64d_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96d_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4_v5\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8_v5\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104ids_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48d_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64d_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2d_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4d_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8d_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16d_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20d_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32d_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48d_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64d_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96d_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104id_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96s_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104is_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4_v5\",\r\n \"numberOfCores\": 4,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8_v5\",\r\n \"numberOfCores\": 8,\r\n - \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 0,\r\n - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E104i_v5\",\r\n \"numberOfCores\": - 104,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS1\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bs_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4bs_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8bs_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16bs_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bs_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bs_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bs_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibs_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2bds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4bds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8bds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16bds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32bds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48bds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64bds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ibds_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4lds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8lds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16lds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32lds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48lds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64lds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 393216,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20a_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v4\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 786432,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112ias_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4-2ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-2ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8-4ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-4ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ads_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E112iads_v5\",\r\n \"numberOfCores\": - 112,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3891200,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2als_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2as_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ats_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4als_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4as_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8als_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8as_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16als_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16as_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32als_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32as_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80is_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8as_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16as_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32as_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48as_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64as_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80as_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC4as_T4_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC8as_T4_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC16as_T4_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC64as_T4_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2883584,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 7340032,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 14680064,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M8-2ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8-4ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 224000,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-4ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16-8ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 524288,\r\n \"memoryInMB\": 448000,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-8ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32-16ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ls\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32ts\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ls\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M32ms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64ms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128ms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M128s_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192ims_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M192is_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_M32dms_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 896000,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_M64dms_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1835008,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ds_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2097152,\r\n \"memoryInMB\": 1048576,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128dms_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 3985408,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ds_v2\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192idms_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 4194304,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M192ids_v2\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2097152,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v3\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v3\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV4ads_V710_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 2\r\n },\r\n - \ {\r\n \"name\": \"Standard_NV8ads_V710_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_NV12ads_V710_v5\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 6\r\n },\r\n - \ {\r\n \"name\": \"Standard_NV24ads_V710_v5\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV28adms_V710_v5\",\r\n \"numberOfCores\": - 28,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 14\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 409600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v2\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 51200,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 1\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 102400,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 2\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 204800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2ls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2s_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4s_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32ls_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L8s_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_L16s_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 163840,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L32s_v2\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 327680,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L48s_v2\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 491520,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L64s_v2\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 655360,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_L80s_v2\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 819200,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2as_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC4as_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ias_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC2ads_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96iads_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4as_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8as_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16as_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC32as_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48as_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64as_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96as_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4as_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC8as_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_EC16as_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20as_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32as_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48as_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64as_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96as_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC4ads_cc_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC8ads_cc_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC16ads_cc_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC20ads_cc_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC32ads_cc_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC48ads_cc_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC64ads_cc_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_EC96ads_cc_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3686400,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96pls_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2plds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4plds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8plds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16plds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32plds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48plds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64plds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96plds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4pds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8pds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16pds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ls_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ls_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ls_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ls_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ls_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48ls_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64ls_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ls_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ls_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2lds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4lds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8lds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16lds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32lds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48lds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 64\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64lds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96lds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128lds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128s_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 48\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D128ds_v6\",\r\n \"numberOfCores\": - 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D192ds_v6\",\r\n \"numberOfCores\": - 192,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2s_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4-2s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4s_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8s_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16s_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20s_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32s_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48s_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64s_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96s_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ds_v6\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ds_v6\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 12\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-2ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8-4ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ds_v6\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 24\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16-4ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16-8ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16ds_v6\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ds_v6\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 48\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-8ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32-16ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ds_v6\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-16ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64-32ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-24ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96-48ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 786432,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96isr_H100_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 1945600,\r\n \"maxDataDiskCount\": - 16\r\n },\r\n {\r\n \"name\": \"Standard_E96ias_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1376256,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"numberOfCores\": - 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 753664,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1509376,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV6s_v2\",\r\n \"numberOfCores\": - 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 753664,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV12s_v2\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1509376,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV24s_v2\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV12s_v3\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 753664,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1509376,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 3018752,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96pds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_D96ps_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48ps_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64ps_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96ps_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E48pds_v6\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E64pds_v6\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_E96pds_v6\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 64\r\n - \ },\r\n {\r\n \"name\": \"Standard_ND96is_MI300X_v5\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": - 16\r\n },\r\n {\r\n \"name\": \"Standard_ND96isr_MI300X_v5\",\r\n - \ \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1048576,\r\n \"memoryInMB\": 1894400,\r\n \"maxDataDiskCount\": - 16\r\n },\r\n {\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M208s_v2\",\r\n \"numberOfCores\": - 208,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 2918400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 5836800,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 8388608,\r\n \"memoryInMB\": 11673600,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_M416s_8_v2\",\r\n \"numberOfCores\": - 416,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 4194304,\r\n \"memoryInMB\": 7782400,\r\n \"maxDataDiskCount\": - 64\r\n },\r\n {\r\n \"name\": \"Standard_D2plds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4plds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8plds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16plds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32plds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48plds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64plds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pls_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4pls_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8pls_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16pls_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32pls_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D48pls_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D64pls_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_D4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_D8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_D16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48pds_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64pds_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_D4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_D8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_D16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_D32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D48ps_v5\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_D64ps_v5\",\r\n \"numberOfCores\": - 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2pds_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_E4pds_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_E8pds_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_E16pds_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20pds_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 768000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32pds_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E2ps_v5\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_E4ps_v5\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_E8ps_v5\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_E16ps_v5\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E20ps_v5\",\r\n \"numberOfCores\": - 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_E32ps_v5\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 212992,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_B2pls_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2ps_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B2pts_v2\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4pls_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B4ps_v2\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8pls_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B8ps_v2\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16pls_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_B16ps_v2\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_NC24ads_A100_v4\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 65536,\r\n \"memoryInMB\": 225280,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC48ads_A100_v4\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC96ads_A100_v4\",\r\n \"numberOfCores\": - 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 901120,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC40ads_H100_v5\",\r\n \"numberOfCores\": - 40,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 131072,\r\n \"memoryInMB\": 327680,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NC80adis_H100_v5\",\r\n \"numberOfCores\": - 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 262144,\r\n \"memoryInMB\": 655360,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV6ads_A10_v5\",\r\n \"numberOfCores\": - 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 184320,\r\n \"memoryInMB\": 56320,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV12ads_A10_v5\",\r\n \"numberOfCores\": - 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 368640,\r\n \"memoryInMB\": 112640,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV18ads_A10_v5\",\r\n \"numberOfCores\": - 18,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 737280,\r\n \"memoryInMB\": 225280,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV36adms_A10_v5\",\r\n \"numberOfCores\": - 36,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2949120,\r\n \"memoryInMB\": 901120,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV36ads_A10_v5\",\r\n \"numberOfCores\": - 36,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1474560,\r\n \"memoryInMB\": 450560,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV72ads_A10_v5\",\r\n \"numberOfCores\": - 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2949120,\r\n \"memoryInMB\": 901120,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1s_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC2s_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC4s_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC8s_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n - \ {\r\n \"name\": \"Standard_DC16s_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24s_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32s_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48s_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC1ds_v3\",\r\n \"numberOfCores\": - 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 76800,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC2ds_v3\",\r\n \"numberOfCores\": - 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 153600,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC4ds_v3\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 307200,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC8ds_v3\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 614400,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC16ds_v3\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1228800,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC24ds_v3\",\r\n \"numberOfCores\": - 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC32ds_v3\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_DC48ds_v3\",\r\n \"numberOfCores\": - 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 2457600,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"numberOfCores\": - 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 90112,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"numberOfCores\": - 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 180224,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"numberOfCores\": - 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 360448,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n - \ },\r\n {\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"numberOfCores\": - 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": - 720896,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n - \ }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '178037' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 02 Apr 2025 09:29:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/3e756742-168e-41b8-a190-877686b572ef - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetSubscriptionInfoSubscriptionMaximum;359 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A3B60C4DBD4A4DE4AE9D05F34523E321 Ref B: TYO201100116019 Ref C: 2025-04-02T09:29:31Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -l -g -n --admin-username --admin-password --image --size --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.250313\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.250313\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.251107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.251107\"\r\n \ }\r\n]" headers: cache-control: @@ -6381,7 +1045,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:33 GMT + - Wed, 24 Dec 2025 05:41:31 GMT expires: - '-1' pragma: @@ -6393,13 +1057,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ca43cd10-7ad8-44a2-8922-9776a6a22a3f + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/4d275773-5489-4c60-9c19-cf22c59fc631 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15976,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: BA596D4EEA95408EBDD4743429DBDE42 Ref B: TYO201100117029 Ref C: 2025-04-02T09:29:32Z' + - 'Ref A: 59DBE76208C44F2295FC05C25C570CE9 Ref B: SG2AA1070304029 Ref C: 2025-12-24T05:41:32Z' status: code: 200 message: OK @@ -6417,9 +1081,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions/16.0.250313?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions/16.0.251107?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -6434,9 +1098,9 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-14T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.250313\",\r\n \"id\": - \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.250313\"\r\n}" + 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-15T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.251107\",\r\n \"id\": + \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.251107\"\r\n}" headers: cache-control: - no-cache @@ -6445,7 +1109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:33 GMT + - Wed, 24 Dec 2025 05:41:33 GMT expires: - '-1' pragma: @@ -6457,13 +1121,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/7af121b7-2824-4639-836a-08b2750e79c1 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/5a9bccc4-e1da-4964-8e1d-f6a28ba4b0fd x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12981,Microsoft.Compute/GetVMImageFromLocation30Min;73981 + - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73975 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 75E5AB96563D49A3B21C0D7084B37EE1 Ref B: TYO201100114019 Ref C: 2025-04-02T09:29:33Z' + - 'Ref A: 4ABF99C71BAB4890B09FB856AE3FEC76 Ref B: SG2AA1040518062 Ref C: 2025-12-24T05:41:32Z' status: code: 200 message: OK @@ -6481,13 +1145,13 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.250313\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.250313\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.251107\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.251107\"\r\n \ }\r\n]" headers: cache-control: @@ -6497,7 +1161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:35 GMT + - Wed, 24 Dec 2025 05:41:33 GMT expires: - '-1' pragma: @@ -6509,13 +1173,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0771c113-c61f-4603-85db-18a348292b77 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/101eb604-f177-47b5-aa00-359b21d3eac0 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15973,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1846DFD037B14C4DB1EC0DF32495FE6E Ref B: TYO201100117017 Ref C: 2025-04-02T09:29:35Z' + - 'Ref A: 4985B908E7CF426591B8B0A7C498E5B2 Ref B: SG2AA1070306040 Ref C: 2025-12-24T05:41:33Z' status: code: 200 message: OK @@ -6533,9 +1197,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions/16.0.250313?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/microsoftsqlserver/artifacttypes/vmimage/offers/sql2022-ws2022/skus/enterprise-gen2/versions/16.0.251107?api-version=2024-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": @@ -6550,9 +1214,9 @@ interactions: \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-03-14T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.250313\",\r\n \"id\": - \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.250313\"\r\n}" + 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-15T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.0.251107\",\r\n \"id\": + \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/microsoftsqlserver/ArtifactTypes/VMImage/Offers/sql2022-ws2022/Skus/enterprise-gen2/Versions/16.0.251107\"\r\n}" headers: cache-control: - no-cache @@ -6561,7 +1225,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:36 GMT + - Wed, 24 Dec 2025 05:41:34 GMT expires: - '-1' pragma: @@ -6573,13 +1237,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ea3a9b1e-d9ce-4cd2-a42f-4eb0ec2bfbb9 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/71fd73b3-317d-484e-91ea-0ddb751811c2 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12979,Microsoft.Compute/GetVMImageFromLocation30Min;73979 + - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73974 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 029BF6C25C8E49C39EF3ECE57BF8CD2A Ref B: TYO201151005036 Ref C: 2025-04-02T09:29:36Z' + - 'Ref A: 223DA70DF8AA48598E823C3ADA2E21B6 Ref B: SG2AA1070301062 Ref C: 2025-12-24T05:41:34Z' status: code: 200 message: OK @@ -6601,7 +1265,7 @@ interactions: "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"}}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "clisqlvm000003", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/clisqlvm000003VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS2_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -6621,21 +1285,21 @@ interactions: Connection: - keep-alive Content-Length: - - '2853' + - '2851' Content-Type: - application/json ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_W3mpXAhb4lFptdji9F9EsuN4Ctm3n9ql","name":"vm_deploy_W3mpXAhb4lFptdji9F9EsuN4Ctm3n9ql","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8269972072073957364","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-04-02T09:29:40.0331986Z","duration":"PT0.0003219S","correlationId":"439d362b-da59-4b36-8d73-147e6199bf25","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_TQ5FmqOJ8jKNmNoJKvtoZTl0RseuqzK3","name":"vm_deploy_TQ5FmqOJ8jKNmNoJKvtoZTl0RseuqzK3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16519248930508775153","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-24T05:41:39.0735367Z","duration":"PT0.000935S","correlationId":"f4401ca2-8eb9-44f9-9719-e8749f7206ad","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_W3mpXAhb4lFptdji9F9EsuN4Ctm3n9ql/operationStatuses/08584580207054319608?api-version=2024-11-01&t=638791829848145284&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=GfvJ7QaKT9caml_8RlmFkrqJoYYNFnsvRMMEnVjSyFcfJQKRUo5jQjukNFLhx-6U0-P2bbgMQaJDCb50yxkiieScLZwFe0N-Oa9R-hBQ5uwSsww2OmDwbwfW9Xq7D6Y7BJ7PHFcwkvivDMBSrX-O28C8Xep1vQO_LMmr6QK0q88RGjvoa1X54TKdRqjExNdM11_i1_Wwwl0rtrTbRna83SmOCX8b4eJ-e5D7LjF0-5albm2qhUPe3FJEcP_oRp8nuiqn8_Fhq24POsTjpm0ZS_ezQGdT2Uz9rOV1gLVgkWXvXbfZf3qfuJWm-t85SFQWQG9EwbqoDu4Ev8n3ivlUrQ&h=jVuiBmAi4_FsjjqZFdYmMgCyA4sqETkzKHWlfovvVbI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_TQ5FmqOJ8jKNmNoJKvtoZTl0RseuqzK3/operationStatuses/08584350519863901162?api-version=2024-11-01&t=639021517039956979&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=lewFS0odq7jgqheNTi9eNSbca7LoCC4guLeoSDJszypp6XF4CwJU8I5bkCZDw2jGp3BMIGKCtDXY9LeFI8DRozXLyP2x5hSzmQUgvAiK7n-mltcaLsA8UUMUzA6ay24UBxbHW8KB32NV90fhLn7TfuN3FgsmwI0ejaxAdYMwr_bVqGjMWzsBobFxUwoItIUgy7IcnRPB816b5R5cn1Yxy3toXA_B4Q4ymFaXPx5ssjYKRfimQLGuqHflpDIsNBXnDTlQAF3KrQ9JsJhWvrw7CVELTzNjmNYbz7tlBlm3UTzngSSmQppG_IBv4xEOwmHiD7BIYVJR_L_0a7iAY1K6HQ&h=PG4KGL2AJ-nAp741VFzfYttc8_Uwf1lWOP8GghII8k8 cache-control: - no-cache content-length: @@ -6643,7 +1307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:29:43 GMT + - Wed, 24 Dec 2025 05:41:43 GMT expires: - '-1' pragma: @@ -6655,13 +1319,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.280.0 + - 1.560.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 52A6F99045124C5FA072E311DF6CD1E8 Ref B: TYO201151003031 Ref C: 2025-04-02T09:29:36Z' + - 'Ref A: 7CD0C47AFF2F4D92AEC99180E0AA37EF Ref B: SG2AA1070305052 Ref C: 2025-12-24T05:41:35Z' status: code: 201 message: Created @@ -6679,55 +1343,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580207054319608?api-version=2024-11-01&t=638791829848145284&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=GfvJ7QaKT9caml_8RlmFkrqJoYYNFnsvRMMEnVjSyFcfJQKRUo5jQjukNFLhx-6U0-P2bbgMQaJDCb50yxkiieScLZwFe0N-Oa9R-hBQ5uwSsww2OmDwbwfW9Xq7D6Y7BJ7PHFcwkvivDMBSrX-O28C8Xep1vQO_LMmr6QK0q88RGjvoa1X54TKdRqjExNdM11_i1_Wwwl0rtrTbRna83SmOCX8b4eJ-e5D7LjF0-5albm2qhUPe3FJEcP_oRp8nuiqn8_Fhq24POsTjpm0ZS_ezQGdT2Uz9rOV1gLVgkWXvXbfZf3qfuJWm-t85SFQWQG9EwbqoDu4Ev8n3ivlUrQ&h=jVuiBmAi4_FsjjqZFdYmMgCyA4sqETkzKHWlfovvVbI - response: - body: - string: '{"status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 02 Apr 2025 09:29:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 683C58AB7C5B4A3CB43E34B318F9EEB8 Ref B: TYO201151003031 Ref C: 2025-04-02T09:29:44Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -l -g -n --admin-username --admin-password --image --size --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580207054319608?api-version=2024-11-01&t=638791829848145284&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=GfvJ7QaKT9caml_8RlmFkrqJoYYNFnsvRMMEnVjSyFcfJQKRUo5jQjukNFLhx-6U0-P2bbgMQaJDCb50yxkiieScLZwFe0N-Oa9R-hBQ5uwSsww2OmDwbwfW9Xq7D6Y7BJ7PHFcwkvivDMBSrX-O28C8Xep1vQO_LMmr6QK0q88RGjvoa1X54TKdRqjExNdM11_i1_Wwwl0rtrTbRna83SmOCX8b4eJ-e5D7LjF0-5albm2qhUPe3FJEcP_oRp8nuiqn8_Fhq24POsTjpm0ZS_ezQGdT2Uz9rOV1gLVgkWXvXbfZf3qfuJWm-t85SFQWQG9EwbqoDu4Ev8n3ivlUrQ&h=jVuiBmAi4_FsjjqZFdYmMgCyA4sqETkzKHWlfovvVbI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584350519863901162?api-version=2024-11-01&t=639021517039956979&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=lewFS0odq7jgqheNTi9eNSbca7LoCC4guLeoSDJszypp6XF4CwJU8I5bkCZDw2jGp3BMIGKCtDXY9LeFI8DRozXLyP2x5hSzmQUgvAiK7n-mltcaLsA8UUMUzA6ay24UBxbHW8KB32NV90fhLn7TfuN3FgsmwI0ejaxAdYMwr_bVqGjMWzsBobFxUwoItIUgy7IcnRPB816b5R5cn1Yxy3toXA_B4Q4ymFaXPx5ssjYKRfimQLGuqHflpDIsNBXnDTlQAF3KrQ9JsJhWvrw7CVELTzNjmNYbz7tlBlm3UTzngSSmQppG_IBv4xEOwmHiD7BIYVJR_L_0a7iAY1K6HQ&h=PG4KGL2AJ-nAp741VFzfYttc8_Uwf1lWOP8GghII8k8 response: body: string: '{"status":"Running"}' @@ -6739,7 +1357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:30:15 GMT + - Wed, 24 Dec 2025 05:41:43 GMT expires: - '-1' pragma: @@ -6753,7 +1371,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4EFF7D30DB414C6E8644DD3CBB47939D Ref B: TYO201151003031 Ref C: 2025-04-02T09:30:15Z' + - 'Ref A: 454560D2EC774B34891E1DA8156DA629 Ref B: SG2AA1040519034 Ref C: 2025-12-24T05:41:44Z' status: code: 200 message: OK @@ -6771,9 +1389,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580207054319608?api-version=2024-11-01&t=638791829848145284&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=GfvJ7QaKT9caml_8RlmFkrqJoYYNFnsvRMMEnVjSyFcfJQKRUo5jQjukNFLhx-6U0-P2bbgMQaJDCb50yxkiieScLZwFe0N-Oa9R-hBQ5uwSsww2OmDwbwfW9Xq7D6Y7BJ7PHFcwkvivDMBSrX-O28C8Xep1vQO_LMmr6QK0q88RGjvoa1X54TKdRqjExNdM11_i1_Wwwl0rtrTbRna83SmOCX8b4eJ-e5D7LjF0-5albm2qhUPe3FJEcP_oRp8nuiqn8_Fhq24POsTjpm0ZS_ezQGdT2Uz9rOV1gLVgkWXvXbfZf3qfuJWm-t85SFQWQG9EwbqoDu4Ev8n3ivlUrQ&h=jVuiBmAi4_FsjjqZFdYmMgCyA4sqETkzKHWlfovvVbI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584350519863901162?api-version=2024-11-01&t=639021517039956979&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=lewFS0odq7jgqheNTi9eNSbca7LoCC4guLeoSDJszypp6XF4CwJU8I5bkCZDw2jGp3BMIGKCtDXY9LeFI8DRozXLyP2x5hSzmQUgvAiK7n-mltcaLsA8UUMUzA6ay24UBxbHW8KB32NV90fhLn7TfuN3FgsmwI0ejaxAdYMwr_bVqGjMWzsBobFxUwoItIUgy7IcnRPB816b5R5cn1Yxy3toXA_B4Q4ymFaXPx5ssjYKRfimQLGuqHflpDIsNBXnDTlQAF3KrQ9JsJhWvrw7CVELTzNjmNYbz7tlBlm3UTzngSSmQppG_IBv4xEOwmHiD7BIYVJR_L_0a7iAY1K6HQ&h=PG4KGL2AJ-nAp741VFzfYttc8_Uwf1lWOP8GghII8k8 response: body: string: '{"status":"Running"}' @@ -6785,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:30:46 GMT + - Wed, 24 Dec 2025 05:42:15 GMT expires: - '-1' pragma: @@ -6799,7 +1417,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 804B12D5E5674BE9B85DD3DA395F7D9B Ref B: TYO201151003031 Ref C: 2025-04-02T09:30:46Z' + - 'Ref A: 85B161B35BF442E18E5EFE7B8A7D6DE0 Ref B: SG2AA1040517052 Ref C: 2025-12-24T05:42:14Z' status: code: 200 message: OK @@ -6817,55 +1435,9 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580207054319608?api-version=2024-11-01&t=638791829848145284&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=GfvJ7QaKT9caml_8RlmFkrqJoYYNFnsvRMMEnVjSyFcfJQKRUo5jQjukNFLhx-6U0-P2bbgMQaJDCb50yxkiieScLZwFe0N-Oa9R-hBQ5uwSsww2OmDwbwfW9Xq7D6Y7BJ7PHFcwkvivDMBSrX-O28C8Xep1vQO_LMmr6QK0q88RGjvoa1X54TKdRqjExNdM11_i1_Wwwl0rtrTbRna83SmOCX8b4eJ-e5D7LjF0-5albm2qhUPe3FJEcP_oRp8nuiqn8_Fhq24POsTjpm0ZS_ezQGdT2Uz9rOV1gLVgkWXvXbfZf3qfuJWm-t85SFQWQG9EwbqoDu4Ev8n3ivlUrQ&h=jVuiBmAi4_FsjjqZFdYmMgCyA4sqETkzKHWlfovvVbI - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 02 Apr 2025 09:31:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2D852AB372B144BCB7904DA17F703F55 Ref B: TYO201151003031 Ref C: 2025-04-02T09:31:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -l -g -n --admin-username --admin-password --image --size --nsg-rule - User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584580207054319608?api-version=2024-11-01&t=638791829848145284&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=GfvJ7QaKT9caml_8RlmFkrqJoYYNFnsvRMMEnVjSyFcfJQKRUo5jQjukNFLhx-6U0-P2bbgMQaJDCb50yxkiieScLZwFe0N-Oa9R-hBQ5uwSsww2OmDwbwfW9Xq7D6Y7BJ7PHFcwkvivDMBSrX-O28C8Xep1vQO_LMmr6QK0q88RGjvoa1X54TKdRqjExNdM11_i1_Wwwl0rtrTbRna83SmOCX8b4eJ-e5D7LjF0-5albm2qhUPe3FJEcP_oRp8nuiqn8_Fhq24POsTjpm0ZS_ezQGdT2Uz9rOV1gLVgkWXvXbfZf3qfuJWm-t85SFQWQG9EwbqoDu4Ev8n3ivlUrQ&h=jVuiBmAi4_FsjjqZFdYmMgCyA4sqETkzKHWlfovvVbI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584350519863901162?api-version=2024-11-01&t=639021517039956979&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=lewFS0odq7jgqheNTi9eNSbca7LoCC4guLeoSDJszypp6XF4CwJU8I5bkCZDw2jGp3BMIGKCtDXY9LeFI8DRozXLyP2x5hSzmQUgvAiK7n-mltcaLsA8UUMUzA6ay24UBxbHW8KB32NV90fhLn7TfuN3FgsmwI0ejaxAdYMwr_bVqGjMWzsBobFxUwoItIUgy7IcnRPB816b5R5cn1Yxy3toXA_B4Q4ymFaXPx5ssjYKRfimQLGuqHflpDIsNBXnDTlQAF3KrQ9JsJhWvrw7CVELTzNjmNYbz7tlBlm3UTzngSSmQppG_IBv4xEOwmHiD7BIYVJR_L_0a7iAY1K6HQ&h=PG4KGL2AJ-nAp741VFzfYttc8_Uwf1lWOP8GghII8k8 response: body: string: '{"status":"Succeeded"}' @@ -6877,7 +1449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:31:48 GMT + - Wed, 24 Dec 2025 05:42:46 GMT expires: - '-1' pragma: @@ -6891,7 +1463,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5990B0DB4DD34743B065AFE4C2A62D1F Ref B: TYO201151003031 Ref C: 2025-04-02T09:31:47Z' + - 'Ref A: A88A10398AD84615A07599D9FCBD2FEF Ref B: SG2AA1070302023 Ref C: 2025-12-24T05:42:46Z' status: code: 200 message: OK @@ -6909,21 +1481,21 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_W3mpXAhb4lFptdji9F9EsuN4Ctm3n9ql","name":"vm_deploy_W3mpXAhb4lFptdji9F9EsuN4Ctm3n9ql","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8269972072073957364","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-04-02T09:31:35.677966Z","correlationId":"439d362b-da59-4b36-8d73-147e6199bf25","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Resources/deployments/vm_deploy_TQ5FmqOJ8jKNmNoJKvtoZTl0RseuqzK3","name":"vm_deploy_TQ5FmqOJ8jKNmNoJKvtoZTl0RseuqzK3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16519248930508775153","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-24T05:42:27.5962516Z","duration":"PT48.5227149S","correlationId":"f4401ca2-8eb9-44f9-9719-e8749f7206ad","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clisqlvm000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clisqlvm000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clisqlvm000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '2920' + - '2949' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:31:48 GMT + - Wed, 24 Dec 2025 05:42:47 GMT expires: - '-1' pragma: @@ -6937,7 +1509,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 73D9307BDD904069AA706039D1F539DB Ref B: TYO201151003031 Ref C: 2025-04-02T09:31:48Z' + - 'Ref A: 794B32D754144778A6920BF13A514860 Ref B: SG2AA1070306062 Ref C: 2025-12-24T05:42:47Z' status: code: 200 message: OK @@ -6955,7 +1527,7 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?$expand=instanceView&api-version=2025-04-01 response: @@ -6963,16 +1535,16 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -6990,28 +1562,28 @@ interactions: \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \ \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2025-04-02T09:31:49+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n + \"2025-12-24T05:42:48+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-04-02T09:30:08.9076056+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-24T05:42:04.9493644+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-04-02T09:31:32.8780853+00:00\"\r\n + succeeded\",\r\n \"time\": \"2025-12-24T05:42:22.6370826+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3522' + - '3511' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:31:49 GMT + - Wed, 24 Dec 2025 05:42:48 GMT expires: - '-1' pragma: @@ -7025,11 +1597,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B6E9AA8B334B4B8A924104DA84A97103 Ref B: TYO201100114011 Ref C: 2025-04-02T09:31:49Z' + - 'Ref A: 5A4DB9A7B03D454D9590C7AFD297110D Ref B: SG2AA1070301025 Ref C: 2025-12-24T05:42:48Z' status: code: 200 message: '' @@ -7047,23 +1619,23 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic?api-version=2022-01-01 response: body: - string: '{"name":"clisqlvm000003VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","etag":"W/\"7bb00cbf-258d-4919-8b43-5a950cd62f1b\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"37990ee0-9b54-487f-9602-7ebbf4d4caae","ipConfigurations":[{"name":"ipconfigclisqlvm000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003","etag":"W/\"7bb00cbf-258d-4919-8b43-5a950cd62f1b\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"vdzukcraicse5ast51mf4u4pod.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-03-4A-A8","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' + string: '{"name":"clisqlvm000003VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic","etag":"W/\"0825cfe6-1895-459a-9ba1-ebf7ecd253de\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bff22266-3d6f-4bbd-a53b-7b5a0b96c5e7","ipConfigurations":[{"name":"ipconfigclisqlvm000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003","etag":"W/\"0825cfe6-1895-459a-9ba1-ebf7ecd253de\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/virtualNetworks/clisqlvm000002VNET/subnets/clisqlvm000002Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"p5gybo4fcf4u3djwfgvj13agpf.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-36-E7-56","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkSecurityGroups/clisqlvm000003NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2089' + - '2090' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:31:50 GMT + - Wed, 24 Dec 2025 05:42:49 GMT etag: - - W/"7bb00cbf-258d-4919-8b43-5a950cd62f1b" + - W/"0825cfe6-1895-459a-9ba1-ebf7ecd253de" expires: - '-1' pragma: @@ -7075,11 +1647,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7f9fbdef-fbec-4113-b4b4-b0fdf3683e2a + - b7f7280a-9393-4937-9aab-3215b689f112 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1BC6EFACCD884BC2A4B15D311C1864C5 Ref B: TYO201151001052 Ref C: 2025-04-02T09:31:50Z' + - 'Ref A: 7315977768144CF5AAEEFD0813949F46 Ref B: SG2AA1040517023 Ref C: 2025-12-24T05:42:49Z' status: code: 200 message: OK @@ -7097,12 +1669,12 @@ interactions: ParameterSetName: - -l -g -n --admin-username --admin-password --image --size --nsg-rule User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP?api-version=2022-01-01 response: body: - string: '{"name":"clisqlvm000003PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","etag":"W/\"405eb2d4-7236-47df-8433-0af587424604\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1aea5d53-3ba6-4afd-8936-f36de5cfd21d","ipAddress":"172.184.144.22","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"clisqlvm000003PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/publicIPAddresses/clisqlvm000003PublicIP","etag":"W/\"9ca80fd1-be93-470f-b5c1-3abff6318f87\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e6a1cfbc-7205-4ddf-8b20-79513e3d0a79","ipAddress":"172.185.138.89","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic/ipConfigurations/ipconfigclisqlvm000003"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache @@ -7111,9 +1683,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:31:51 GMT + - Wed, 24 Dec 2025 05:42:50 GMT etag: - - W/"405eb2d4-7236-47df-8433-0af587424604" + - W/"9ca80fd1-be93-470f-b5c1-3abff6318f87" expires: - '-1' pragma: @@ -7125,11 +1697,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e07669c0-49fc-418e-aebd-acbea96d1da9 + - 82d0d969-ef80-435a-b1db-bff5d211d4b0 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A23049C2306A43DB8698D1D90F80F8DF Ref B: TYO201151002042 Ref C: 2025-04-02T09:31:51Z' + - 'Ref A: 64BDA9F0298B492A8E6A22FEB8F19037 Ref B: SG2AA1040518042 Ref C: 2025-12-24T05:42:50Z' status: code: 200 message: OK @@ -7156,7 +1728,7 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2022-08-01-preview response: @@ -7164,7 +1736,7 @@ interactions: string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","leastPrivilegeMode":"NotSet","sqlImageSku":"Unknown","enableAutomaticUpgrade":true},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/34fa4adf-75fb-4fa5-b479-deb5c99c95e7?api-version=2022-08-01-preview&t=639021517730250601&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G3eYYAAjAvAe4ViQbwABEGaED0_lg_amz8x1S9eeZD7kTE5wZG8I54zfUljPeK9pf9ViVLBifYsqT8MUwFZCbxC3u_whn-PMH9ptQuwVnNYZpOgAa7cM6ggawgB-k2JsK057sjDqgjc9yeBnWk1PxCXneYHTykYUKpX3zNSeRjk0V15jJWWu-HFPDI9fRHn0Hm7GigtPqCD4p7MRPvfSNdcfz1NMHTFnkbnhkIDUj028NoBqWRXlV_YtmsYbjpiM6-g2IkEdGgJPO1IDldO1EfMWCllWH_6SsCHlmYzynT1LZvuFlDDavS3D-w4Z6Hf59MuVINajH5KjBnHTNKx2qg&h=AECouPT-Ja0oSCsGN1FpA6ZPeeMIwa7pTCPJOcLu2ow cache-control: - no-cache content-length: @@ -7172,7 +1744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:31:55 GMT + - Wed, 24 Dec 2025 05:42:53 GMT expires: - '-1' pragma: @@ -7184,13 +1756,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/786cf39b-9532-414f-8b53-44b3340c208a + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/e34bf5eb-5d78-4337-b35f-f95aedbab3b2 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 31B302CD703647CCB7139B753F66DDF0 Ref B: TYO201151002062 Ref C: 2025-04-02T09:31:52Z' + - 'Ref A: 908B19582FE345FDB5A057D90B627297 Ref B: SG2AA1040513052 Ref C: 2025-12-24T05:42:50Z' status: code: 201 message: Created @@ -7208,12 +1780,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/34fa4adf-75fb-4fa5-b479-deb5c99c95e7?api-version=2022-08-01-preview&t=639021517730250601&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G3eYYAAjAvAe4ViQbwABEGaED0_lg_amz8x1S9eeZD7kTE5wZG8I54zfUljPeK9pf9ViVLBifYsqT8MUwFZCbxC3u_whn-PMH9ptQuwVnNYZpOgAa7cM6ggawgB-k2JsK057sjDqgjc9yeBnWk1PxCXneYHTykYUKpX3zNSeRjk0V15jJWWu-HFPDI9fRHn0Hm7GigtPqCD4p7MRPvfSNdcfz1NMHTFnkbnhkIDUj028NoBqWRXlV_YtmsYbjpiM6-g2IkEdGgJPO1IDldO1EfMWCllWH_6SsCHlmYzynT1LZvuFlDDavS3D-w4Z6Hf59MuVINajH5KjBnHTNKx2qg&h=AECouPT-Ja0oSCsGN1FpA6ZPeeMIwa7pTCPJOcLu2ow response: body: - string: '{"name":"deb9ff9d-9c6d-49c5-9ddf-21eacb158c64","status":"InProgress","startTime":"2025-04-02T09:31:55.47Z"}' + string: '{"name":"34fa4adf-75fb-4fa5-b479-deb5c99c95e7","status":"InProgress","startTime":"2025-12-24T05:42:51.92Z"}' headers: cache-control: - no-cache @@ -7222,7 +1794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:31:56 GMT + - Wed, 24 Dec 2025 05:42:53 GMT expires: - '-1' pragma: @@ -7234,11 +1806,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/67fdbd96-a087-4fa2-8092-665abe3a5967 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/657211cc-c60e-4d78-a1ae-09f99d536210 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 57935BB14990476C8C15DBB052068BE8 Ref B: TYO201151002062 Ref C: 2025-04-02T09:31:56Z' + - 'Ref A: 93B4137B55E141ADBC01D672B173BEA6 Ref B: SG2AA1070306060 Ref C: 2025-12-24T05:42:53Z' status: code: 200 message: OK @@ -7256,12 +1828,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/34fa4adf-75fb-4fa5-b479-deb5c99c95e7?api-version=2022-08-01-preview&t=639021517730250601&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G3eYYAAjAvAe4ViQbwABEGaED0_lg_amz8x1S9eeZD7kTE5wZG8I54zfUljPeK9pf9ViVLBifYsqT8MUwFZCbxC3u_whn-PMH9ptQuwVnNYZpOgAa7cM6ggawgB-k2JsK057sjDqgjc9yeBnWk1PxCXneYHTykYUKpX3zNSeRjk0V15jJWWu-HFPDI9fRHn0Hm7GigtPqCD4p7MRPvfSNdcfz1NMHTFnkbnhkIDUj028NoBqWRXlV_YtmsYbjpiM6-g2IkEdGgJPO1IDldO1EfMWCllWH_6SsCHlmYzynT1LZvuFlDDavS3D-w4Z6Hf59MuVINajH5KjBnHTNKx2qg&h=AECouPT-Ja0oSCsGN1FpA6ZPeeMIwa7pTCPJOcLu2ow response: body: - string: '{"name":"deb9ff9d-9c6d-49c5-9ddf-21eacb158c64","status":"InProgress","startTime":"2025-04-02T09:31:55.47Z"}' + string: '{"name":"34fa4adf-75fb-4fa5-b479-deb5c99c95e7","status":"InProgress","startTime":"2025-12-24T05:42:51.92Z"}' headers: cache-control: - no-cache @@ -7270,7 +1842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:32:12 GMT + - Wed, 24 Dec 2025 05:43:09 GMT expires: - '-1' pragma: @@ -7282,11 +1854,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/de7cfe0e-57f3-4543-9e3c-b3a57bc85047 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/dd0454e7-041a-4cc3-9cbe-5e3da16b9884 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 24B5B341F53642EDA3A339567BFB678A Ref B: TYO201151002062 Ref C: 2025-04-02T09:32:12Z' + - 'Ref A: 12AE7851BFF8449882D45BBD7CD43AF2 Ref B: SG2AA1040513025 Ref C: 2025-12-24T05:43:09Z' status: code: 200 message: OK @@ -7304,12 +1876,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/34fa4adf-75fb-4fa5-b479-deb5c99c95e7?api-version=2022-08-01-preview&t=639021517730250601&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G3eYYAAjAvAe4ViQbwABEGaED0_lg_amz8x1S9eeZD7kTE5wZG8I54zfUljPeK9pf9ViVLBifYsqT8MUwFZCbxC3u_whn-PMH9ptQuwVnNYZpOgAa7cM6ggawgB-k2JsK057sjDqgjc9yeBnWk1PxCXneYHTykYUKpX3zNSeRjk0V15jJWWu-HFPDI9fRHn0Hm7GigtPqCD4p7MRPvfSNdcfz1NMHTFnkbnhkIDUj028NoBqWRXlV_YtmsYbjpiM6-g2IkEdGgJPO1IDldO1EfMWCllWH_6SsCHlmYzynT1LZvuFlDDavS3D-w4Z6Hf59MuVINajH5KjBnHTNKx2qg&h=AECouPT-Ja0oSCsGN1FpA6ZPeeMIwa7pTCPJOcLu2ow response: body: - string: '{"name":"deb9ff9d-9c6d-49c5-9ddf-21eacb158c64","status":"InProgress","startTime":"2025-04-02T09:31:55.47Z"}' + string: '{"name":"34fa4adf-75fb-4fa5-b479-deb5c99c95e7","status":"InProgress","startTime":"2025-12-24T05:42:51.92Z"}' headers: cache-control: - no-cache @@ -7318,7 +1890,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:32:27 GMT + - Wed, 24 Dec 2025 05:43:24 GMT expires: - '-1' pragma: @@ -7330,11 +1902,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/b9af259b-b11e-4085-9de0-4e8c477fb23e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/63e09bed-7cf5-47e7-8f3d-457a22ebed6d x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 65EAF3BED4864F03A8CEAE2DF2D9A5B1 Ref B: TYO201151002062 Ref C: 2025-04-02T09:32:28Z' + - 'Ref A: 32D651C86C2543939BB5572B67C4D250 Ref B: SG2AA1040512036 Ref C: 2025-12-24T05:43:24Z' status: code: 200 message: OK @@ -7352,12 +1924,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/34fa4adf-75fb-4fa5-b479-deb5c99c95e7?api-version=2022-08-01-preview&t=639021517730250601&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G3eYYAAjAvAe4ViQbwABEGaED0_lg_amz8x1S9eeZD7kTE5wZG8I54zfUljPeK9pf9ViVLBifYsqT8MUwFZCbxC3u_whn-PMH9ptQuwVnNYZpOgAa7cM6ggawgB-k2JsK057sjDqgjc9yeBnWk1PxCXneYHTykYUKpX3zNSeRjk0V15jJWWu-HFPDI9fRHn0Hm7GigtPqCD4p7MRPvfSNdcfz1NMHTFnkbnhkIDUj028NoBqWRXlV_YtmsYbjpiM6-g2IkEdGgJPO1IDldO1EfMWCllWH_6SsCHlmYzynT1LZvuFlDDavS3D-w4Z6Hf59MuVINajH5KjBnHTNKx2qg&h=AECouPT-Ja0oSCsGN1FpA6ZPeeMIwa7pTCPJOcLu2ow response: body: - string: '{"name":"deb9ff9d-9c6d-49c5-9ddf-21eacb158c64","status":"InProgress","startTime":"2025-04-02T09:31:55.47Z"}' + string: '{"name":"34fa4adf-75fb-4fa5-b479-deb5c99c95e7","status":"InProgress","startTime":"2025-12-24T05:42:51.92Z"}' headers: cache-control: - no-cache @@ -7366,7 +1938,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:32:42 GMT + - Wed, 24 Dec 2025 05:43:39 GMT expires: - '-1' pragma: @@ -7378,11 +1950,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/d00e3da7-6635-4715-b523-c43e97680c77 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/94ee22e0-f594-4382-8a18-4caed8bccff6 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 547337C9124640E28AE54EFB6D9F03B7 Ref B: TYO201151002062 Ref C: 2025-04-02T09:32:43Z' + - 'Ref A: D294DCFDC2DE49CB8DE269683C8E01DF Ref B: SG2AA1070301060 Ref C: 2025-12-24T05:43:40Z' status: code: 200 message: OK @@ -7400,12 +1972,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/34fa4adf-75fb-4fa5-b479-deb5c99c95e7?api-version=2022-08-01-preview&t=639021517730250601&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G3eYYAAjAvAe4ViQbwABEGaED0_lg_amz8x1S9eeZD7kTE5wZG8I54zfUljPeK9pf9ViVLBifYsqT8MUwFZCbxC3u_whn-PMH9ptQuwVnNYZpOgAa7cM6ggawgB-k2JsK057sjDqgjc9yeBnWk1PxCXneYHTykYUKpX3zNSeRjk0V15jJWWu-HFPDI9fRHn0Hm7GigtPqCD4p7MRPvfSNdcfz1NMHTFnkbnhkIDUj028NoBqWRXlV_YtmsYbjpiM6-g2IkEdGgJPO1IDldO1EfMWCllWH_6SsCHlmYzynT1LZvuFlDDavS3D-w4Z6Hf59MuVINajH5KjBnHTNKx2qg&h=AECouPT-Ja0oSCsGN1FpA6ZPeeMIwa7pTCPJOcLu2ow response: body: - string: '{"name":"deb9ff9d-9c6d-49c5-9ddf-21eacb158c64","status":"InProgress","startTime":"2025-04-02T09:31:55.47Z"}' + string: '{"name":"34fa4adf-75fb-4fa5-b479-deb5c99c95e7","status":"InProgress","startTime":"2025-12-24T05:42:51.92Z"}' headers: cache-control: - no-cache @@ -7414,7 +1986,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:32:58 GMT + - Wed, 24 Dec 2025 05:43:56 GMT expires: - '-1' pragma: @@ -7426,11 +1998,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/3c11d66e-79d9-4097-8352-0d570a35049c + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/1f2290b3-e977-40a5-9a65-b51e6b580517 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B8E59218250F4BA899A2C840892753BB Ref B: TYO201151002062 Ref C: 2025-04-02T09:32:58Z' + - 'Ref A: 78E33EFCC2044A26BA31C7D56E76FFF0 Ref B: SG2AA1070301054 Ref C: 2025-12-24T05:43:56Z' status: code: 200 message: OK @@ -7448,21 +2020,21 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/34fa4adf-75fb-4fa5-b479-deb5c99c95e7?api-version=2022-08-01-preview&t=639021517730250601&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G3eYYAAjAvAe4ViQbwABEGaED0_lg_amz8x1S9eeZD7kTE5wZG8I54zfUljPeK9pf9ViVLBifYsqT8MUwFZCbxC3u_whn-PMH9ptQuwVnNYZpOgAa7cM6ggawgB-k2JsK057sjDqgjc9yeBnWk1PxCXneYHTykYUKpX3zNSeRjk0V15jJWWu-HFPDI9fRHn0Hm7GigtPqCD4p7MRPvfSNdcfz1NMHTFnkbnhkIDUj028NoBqWRXlV_YtmsYbjpiM6-g2IkEdGgJPO1IDldO1EfMWCllWH_6SsCHlmYzynT1LZvuFlDDavS3D-w4Z6Hf59MuVINajH5KjBnHTNKx2qg&h=AECouPT-Ja0oSCsGN1FpA6ZPeeMIwa7pTCPJOcLu2ow response: body: - string: '{"name":"deb9ff9d-9c6d-49c5-9ddf-21eacb158c64","status":"InProgress","startTime":"2025-04-02T09:31:55.47Z"}' + string: '{"name":"34fa4adf-75fb-4fa5-b479-deb5c99c95e7","status":"Succeeded","startTime":"2025-12-24T05:42:51.92Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:33:13 GMT + - Wed, 24 Dec 2025 05:44:13 GMT expires: - '-1' pragma: @@ -7474,11 +2046,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/5d42a24c-9245-417a-bb53-73ccef2be269 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/06c09038-8b05-4ac4-bb9f-b21c2cf0c813 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 77B88BF1DA9F4446B464B2565C6F65A9 Ref B: TYO201151002062 Ref C: 2025-04-02T09:33:14Z' + - 'Ref A: 83C7EE91519144BC996ADC5526D18D5C Ref B: SG2AA1070305031 Ref C: 2025-12-24T05:44:12Z' status: code: 200 message: OK @@ -7496,21 +2068,21 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/deb9ff9d-9c6d-49c5-9ddf-21eacb158c64?api-version=2022-08-01-preview&t=638791831167160829&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=ibJgOSuXLcCmP8wweloetfNpmKlWu1TQeJHarmKyuatiKsijRDxM97YMRT4ato76uVvsZUwmT6RBGYL6gs-nBRiCcgbqihu1lzaW1uibU2ad7iCNzDXuGhQamN8i-LZNaD4mdPzQCfcNhWnkDWE8gUry2ls_wIpSe58h49jiBCYTtoZTXxEzo8Hl0WQ6MCEc6SN7RjBbYcjFWgLk2evFbsOl2HwdhXJIlsFYZaG9xOQC11mnNSkeqYb34FTMTJHsAYqzui5qUL9GrfjEtApTUmLNEgq02HMgCtMaVuD7LCWEdfxfgeySZhLtcYw0QE45SRuqd9J-PoPykCy2hg683A&h=5aCleICKtb9eiCbCY9Pv3OsKw7_IzybagiwQTmGUlGE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2022-08-01-preview response: body: - string: '{"name":"deb9ff9d-9c6d-49c5-9ddf-21eacb158c64","status":"Succeeded","startTime":"2025-04-02T09:31:55.47Z"}' + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2019-WS2022","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","leastPrivilegeMode":"NotSet","sqlImageSku":"Enterprise","enableAutomaticUpgrade":true},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' headers: cache-control: - no-cache content-length: - - '106' + - '689' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:33:29 GMT + - Wed, 24 Dec 2025 05:44:15 GMT expires: - '-1' pragma: @@ -7521,12 +2093,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/1da40f77-40d0-4ece-92ee-a4d6ade798e1 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 237FAF7CB50A47868D97FF660FA44E24 Ref B: TYO201151002062 Ref C: 2025-04-02T09:33:29Z' + - 'Ref A: B634BD48F6744216B10A9A45EE0C49D8 Ref B: SG2AA1070304023 Ref C: 2025-12-24T05:44:13Z' status: code: 200 message: OK @@ -7534,7 +2104,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -7544,7 +2114,7 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2022-08-01-preview response: @@ -7558,7 +2128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:33:30 GMT + - Wed, 24 Dec 2025 05:44:15 GMT expires: - '-1' pragma: @@ -7572,12 +2142,17 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 849F41A460044EEAAD4D146098330B9A Ref B: TYO201151002062 Ref C: 2025-04-02T09:33:30Z' + - 'Ref A: 56FDA463997A46C191BA6C7619508419 Ref B: SG2AA1040516023 Ref C: 2025-12-24T05:44:15Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", + "sqlServerLicenseType": "PAYG", "sqlManagement": "LightWeight", "autoPatchingSettings": + {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": + {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": + {}}, "enableAutomaticUpgrade": false}}' headers: Accept: - application/json @@ -7587,24 +2162,80 @@ interactions: - sql vm create Connection: - keep-alive + Content-Length: + - '581' + Content-Type: + - application/json ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2022-08-01-preview + response: + body: + string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","leastPrivilegeMode":"NotSet","sqlImageSku":"Unknown","enableAutomaticUpgrade":true},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 + cache-control: + - no-cache + content-length: + - '656' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Dec 2025 05:44:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/e38e1a36-7e67-4100-9e8d-883783d83ac4 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: C3078269E3E542148C649583CF1986C7 Ref B: SG2AA1070304034 Ref C: 2025-12-24T05:44:16Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --license-type + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002?api-version=2022-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000002","provisioningState":"Succeeded","sqlImageOffer":"SQL2019-WS2022","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","leastPrivilegeMode":"NotSet","sqlImageSku":"Enterprise","enableAutomaticUpgrade":true},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000002","name":"clisqlvm000002","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache content-length: - - '689' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:33:30 GMT + - Wed, 24 Dec 2025 05:44:18 GMT expires: - '-1' pragma: @@ -7615,53 +2246,44 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/53dbf0f3-ff64-46b5-ae8a-325be933aac9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 4B0C248EBA094F1AB62638061CF39D61 Ref B: TYO201151002062 Ref C: 2025-04-02T09:33:31Z' + - 'Ref A: 40659B557BA44791A41A971B633CF03C Ref B: SG2AA1070301054 Ref C: 2025-12-24T05:44:19Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "properties": {"virtualMachineResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003", - "sqlServerLicenseType": "PAYG", "sqlManagement": "LightWeight", "autoPatchingSettings": - {}, "autoBackupSettings": {}, "keyVaultCredentialSettings": {}, "serverConfigurationsManagementSettings": - {"sqlConnectivityUpdateSettings": {}, "sqlWorkloadTypeUpdateSettings": {}, "additionalFeaturesServerConfigurations": - {}}, "enableAutomaticUpgrade": false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - sql vm create Connection: - keep-alive - Content-Length: - - '581' - Content-Type: - - application/json ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2022-08-01-preview + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"properties":{"virtualMachineResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003","provisioningState":"Provisioning","sqlServerLicenseType":"PAYG","sqlManagement":"LightWeight","leastPrivilegeMode":"NotSet","sqlImageSku":"Unknown","enableAutomaticUpgrade":true},"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003","name":"clisqlvm000003","type":"Microsoft.SqlVirtualMachine/sqlVirtualMachines"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 cache-control: - no-cache content-length: - - '656' + - '108' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:33:35 GMT + - Wed, 24 Dec 2025 05:44:34 GMT expires: - '-1' pragma: @@ -7673,16 +2295,62 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/46662878-aa89-4c42-b97a-c2e960a65452 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/81a3002c-a9f7-4cea-a12a-1933e0136844 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: DB750256810F4080B3D86726546904BB Ref B: TYO201151004031 Ref C: 2025-04-02T09:33:31Z' + - 'Ref A: E78B446BD6454560B396257DBA652F95 Ref B: SG2AA1040515029 Ref C: 2025-12-24T05:44:34Z' status: - code: 201 - message: Created + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --license-type + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 + response: + body: + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Dec 2025 05:44:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/9763f520-a60e-49c5-9884-2178afc789e6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 793CC10A19CE420C949AC649BA2A697C Ref B: SG2AA1070302062 Ref C: 2025-12-24T05:44:50Z' + status: + code: 200 + message: OK - request: body: null headers: @@ -7697,12 +2365,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"name":"4af5dea2-b20d-4732-87ae-1fe7103cdce8","status":"InProgress","startTime":"2025-04-02T09:33:34.393Z"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache @@ -7711,7 +2379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:33:35 GMT + - Wed, 24 Dec 2025 05:45:07 GMT expires: - '-1' pragma: @@ -7723,11 +2391,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/351f938f-45c6-470f-90a6-7abfba66b6ff + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/8d35a501-8e3d-458c-8c82-5fc603863be0 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1A37C28C88AA43719688A332E7CE5F5C Ref B: TYO201151004031 Ref C: 2025-04-02T09:33:35Z' + - 'Ref A: 114EE92CDC48481D8039FA26DA6267C7 Ref B: SG2AA1070304062 Ref C: 2025-12-24T05:45:06Z' status: code: 200 message: OK @@ -7745,12 +2413,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"name":"4af5dea2-b20d-4732-87ae-1fe7103cdce8","status":"InProgress","startTime":"2025-04-02T09:33:34.393Z"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache @@ -7759,7 +2427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:33:51 GMT + - Wed, 24 Dec 2025 05:45:23 GMT expires: - '-1' pragma: @@ -7771,11 +2439,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/505b8bfc-15b1-41ff-8cdd-3581f9f9bc32 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/c8121fa0-2f65-4415-b07e-3be1707b9e1f x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 05F3D1C4C29E4BC08F8B6A96A85A8EE4 Ref B: TYO201151004031 Ref C: 2025-04-02T09:33:51Z' + - 'Ref A: A166496A6A7A4791B318B704965A2A2F Ref B: SG2AA1070301052 Ref C: 2025-12-24T05:45:22Z' status: code: 200 message: OK @@ -7793,12 +2461,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"name":"4af5dea2-b20d-4732-87ae-1fe7103cdce8","status":"InProgress","startTime":"2025-04-02T09:33:34.393Z"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache @@ -7807,7 +2475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:34:06 GMT + - Wed, 24 Dec 2025 05:45:39 GMT expires: - '-1' pragma: @@ -7819,11 +2487,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b172dd5d-2d5a-4192-9d2e-d5ea07947de1 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/4cfefb22-d108-49a0-98f0-26152bda59de x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2372A2B0C85E438F9E75A3F0D1D23A68 Ref B: TYO201151004031 Ref C: 2025-04-02T09:34:06Z' + - 'Ref A: CE8A6B9A678441BAA187E54981F8A936 Ref B: SG2AA1040512023 Ref C: 2025-12-24T05:45:39Z' status: code: 200 message: OK @@ -7841,12 +2509,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"name":"4af5dea2-b20d-4732-87ae-1fe7103cdce8","status":"InProgress","startTime":"2025-04-02T09:33:34.393Z"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache @@ -7855,7 +2523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:34:22 GMT + - Wed, 24 Dec 2025 05:45:54 GMT expires: - '-1' pragma: @@ -7867,11 +2535,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/30fb512c-e4df-46ab-b013-1121f0130cd3 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/706bb4fb-7e87-4502-bfe6-1552a20b2583 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2F01AFAFEBED466DBE247A7A498222D8 Ref B: TYO201151004031 Ref C: 2025-04-02T09:34:22Z' + - 'Ref A: 9BD72BEFA7A440A3B530A5EA78757205 Ref B: SG2AA1040519042 Ref C: 2025-12-24T05:45:55Z' status: code: 200 message: OK @@ -7889,12 +2557,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"name":"4af5dea2-b20d-4732-87ae-1fe7103cdce8","status":"InProgress","startTime":"2025-04-02T09:33:34.393Z"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache @@ -7903,7 +2571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:34:38 GMT + - Wed, 24 Dec 2025 05:46:11 GMT expires: - '-1' pragma: @@ -7915,11 +2583,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b187d012-72d1-448c-aab4-4ec674dcfa4d + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/7f4c9625-2c5d-44c1-962a-2a1499486e5d x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F37DE8AC59F2411DADB2702214E97606 Ref B: TYO201151004031 Ref C: 2025-04-02T09:34:38Z' + - 'Ref A: A233D328B7914A1DB559021101B8A7E9 Ref B: SG2AA1040515042 Ref C: 2025-12-24T05:46:10Z' status: code: 200 message: OK @@ -7937,12 +2605,12 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"name":"4af5dea2-b20d-4732-87ae-1fe7103cdce8","status":"InProgress","startTime":"2025-04-02T09:33:34.393Z"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache @@ -7951,7 +2619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:34:53 GMT + - Wed, 24 Dec 2025 05:46:27 GMT expires: - '-1' pragma: @@ -7963,11 +2631,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/4cad4311-ee4c-4d8a-8776-79c2f200980e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/975a3369-136e-4d3c-851f-5dd566d2c9f2 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 74AB7B20ED62455387900239C279BB4F Ref B: TYO201151004031 Ref C: 2025-04-02T09:34:53Z' + - 'Ref A: DFB2567090A749369ED2DE001E992D2B Ref B: SG2AA1040520060 Ref C: 2025-12-24T05:46:27Z' status: code: 200 message: OK @@ -7985,12 +2653,60 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/4af5dea2-b20d-4732-87ae-1fe7103cdce8?api-version=2022-08-01-preview&t=638791832156327428&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=HQ2Jbz_miP7TBMoIxn9bnegsJ-b-ABXiHlqh_pxtgKXAiPiF9CBOrXjVUfge5XUwObnCUPygx_9i6j-Cp6-xZ_g2xqmO60BxW9sczFUD8W5WFwWK2gsKE6ritg-BGnbM39ax9YbYNapkTKafMTpK3N9uSu95bfMQcBPNQSuxhvoqDTc4YVpI473WDeS2kc1DB70xVNkttxkKNLUhxyXHuDGn6y7FQvGz8UpkgjCnRWgMKRr_P0m0B5x83hdSBLslebl3oqYmtVIFdY9bcwI6BKj4kmdDjqIZsBUjctFXa8rb4MUT187_UpoIK4xSlX3_2gl9Iepj6lbgnai1vryknw&h=BCrlJDQZ_4GL0pnAVdve6_R4j7aGITrTlp3KCncg5Q4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 response: body: - string: '{"name":"4af5dea2-b20d-4732-87ae-1fe7103cdce8","status":"Succeeded","startTime":"2025-04-02T09:33:34.393Z"}' + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"InProgress","startTime":"2025-12-24T05:44:17.673Z"}' + headers: + cache-control: + - no-cache + content-length: + - '108' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Dec 2025 05:46:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/af81826b-cf7f-404f-aa58-749faa6bc153 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3B42671CC629471EBC8E6F904B0E839B Ref B: SG2AA1070303029 Ref C: 2025-12-24T05:46:42Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sql vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --license-type + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SqlVirtualMachine/locations/westus/operationTypes/createsqlvirtualmachine/operationResults/6c22950a-8492-4a7d-91e8-ce76f6217e99?api-version=2022-08-01-preview&t=639021518587653790&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uC-nGRoN73_EzVOTKCHYiV9OAZ6QyKsVVB3nyYi2CUbd3a1ULvx8f3vRgz1v3Q_JcLYxHc5px-Gxgl04d7-91KH_TDWWSziofSYOHALgoHGkl4nqWNFB6QZTc3lRzkp2kxugDGQUZyidAmX09EJshphcpgw6j--pEMnuA2jydve-hqLvK4T03iWtF3btqJvxTpCmWqZqzO5gTGYJX-uJxPLv8PCxqZ331tHNnyYddTtMdePFJCnjhSJZ00mocDiASr0BBHqUnqbk9Ii9KS3L_UiddzpPoLVP65Mt5farFmIAP_dy7phY_iu6oeFVG1v8cMXTgX04Jah9Axeou_jylQ&h=efvaPxcZ08DVxOMmVKl4cuD2PajPpzGrAXRy13bM_00 + response: + body: + string: '{"name":"6c22950a-8492-4a7d-91e8-ce76f6217e99","status":"Succeeded","startTime":"2025-12-24T05:44:17.673Z"}' headers: cache-control: - no-cache @@ -7999,7 +2715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:09 GMT + - Wed, 24 Dec 2025 05:46:58 GMT expires: - '-1' pragma: @@ -8011,11 +2727,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/1d544647-b201-4822-8c6e-efb266c5ee07 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/67ba6830-ced0-445d-8d10-cea44838161f x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B127F578E64D4FC4BE88A9E641054484 Ref B: TYO201151004031 Ref C: 2025-04-02T09:35:09Z' + - 'Ref A: 7BF9F6A78EAE4906A9D1811022387815 Ref B: SG2AA1040518025 Ref C: 2025-12-24T05:46:59Z' status: code: 200 message: OK @@ -8033,7 +2749,7 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2022-08-01-preview response: @@ -8047,7 +2763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:09 GMT + - Wed, 24 Dec 2025 05:47:00 GMT expires: - '-1' pragma: @@ -8061,7 +2777,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BBC0073780B14CBC99740DA6AF4727FB Ref B: TYO201151004031 Ref C: 2025-04-02T09:35:09Z' + - 'Ref A: A61C3D33774F4B479DFA9BD02C02FA67 Ref B: SG2AA1040520052 Ref C: 2025-12-24T05:46:59Z' status: code: 200 message: OK @@ -8079,7 +2795,7 @@ interactions: ParameterSetName: - -n -g -l --license-type User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachines/clisqlvm000003?api-version=2022-08-01-preview response: @@ -8093,7 +2809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:10 GMT + - Wed, 24 Dec 2025 05:47:01 GMT expires: - '-1' pragma: @@ -8107,7 +2823,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6889C900FD9543288CB782BB1B5DBF81 Ref B: TYO201151004031 Ref C: 2025-04-02T09:35:10Z' + - 'Ref A: 365B03D93ABE4D6FAD5FC1A1A73E16FD Ref B: SG2AA1070301023 Ref C: 2025-12-24T05:47:01Z' status: code: 200 message: OK @@ -8125,21 +2841,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001","name":"sqlvm_cli_test_aad000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sqlvm_aad_auth_negative","date":"2025-04-02T09:26:53Z","module":"sqlvm","Creator":"v-jingszhang@microsoft.com","DateCreated":"2025-04-02T09:27:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001","name":"sqlvm_cli_test_aad000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sqlvm_aad_auth_negative","date":"2025-12-24T05:40:03Z","module":"sqlvm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '457' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:10 GMT + - Wed, 24 Dec 2025 05:47:01 GMT expires: - '-1' pragma: @@ -8153,7 +2869,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 493950C28BC846A9981D851F712F608B Ref B: TYO201151006036 Ref C: 2025-04-02T09:35:11Z' + - 'Ref A: 5946C5FF92CF42879CE8C22A99908785 Ref B: SG2AA1040519060 Ref C: 2025-12-24T05:47:02Z' status: code: 200 message: OK @@ -8175,21 +2891,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi","name":"attached_msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"3289ca6d-17dc-43d7-99ab-55c2aa49338a","clientId":"86410484-5e98-4363-a684-f6dd495c2cd0"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi","name":"attached_msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"562c81c5-d273-4843-9627-c0944d91e825","clientId":"7d99798f-4925-4e63-836d-e264119292c0"}}' headers: cache-control: - no-cache content-length: - - '450' + - '474' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:14 GMT + - Wed, 24 Dec 2025 05:47:07 GMT expires: - '-1' location: @@ -8203,13 +2919,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/a142cbe3-77c2-4959-80dc-14a10fbec441 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/130af75d-8d4e-41e2-a781-f960ec513541 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 793478ECEE6244B2AEBF4FAE7FC20E63 Ref B: TYO201100114045 Ref C: 2025-04-02T09:35:11Z' + - 'Ref A: 302D1B510AE345C4A3A8278BE913EBF3 Ref B: SG2AA1070304023 Ref C: 2025-12-24T05:47:02Z' status: code: 201 message: Created @@ -8227,24 +2943,24 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -8257,7 +2973,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -8265,17 +2981,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3066' + - '3057' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:15 GMT + - Wed, 24 Dec 2025 05:47:07 GMT etag: - '"2"' expires: @@ -8291,17 +3007,17 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 516501175B314FCB8DEBF9D9C4F7C838 Ref B: TYO201100115017 Ref C: 2025-04-02T09:35:15Z' + - 'Ref A: A4A00078500B427D8122125FAB2CEC73 Ref B: SG2AA1070304054 Ref C: 2025-12-24T05:47:07Z' status: code: 200 message: '' - request: - body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi": - {}}}}' + body: '{"identity": {"userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi": + {}}, "type": "UserAssigned"}}' headers: Accept: - application/json @@ -8318,7 +3034,7 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -8328,16 +3044,16 @@ interactions: \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": - \"Updating\",\r\n \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n + \ \"vmSize\": \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"16.0.250313\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n + \"16.0.251107\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -8350,7 +3066,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -8358,21 +3074,21 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/217d2ea8-be73-4bc4-a5b2-9fe0e96b63ef?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791833185404999&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=YdW19Tyxx--9ZuDhwTxQTwvfifTAQYxWg8IToe6Xkv2HXi2xEVmokIPcUYCQnvbhpJL8Wt0YOJtOVGFvQk0HvlBKTKJ4yAk4_DPzA6MoWpyqAjI1Nhs2JzjwMeAW-_aCPIwhOzbVG_8QnMbwxwYTb9ZBicnS7guJU_oxtb9ZMlFSjQntOqtkCLPsAzCQq4wqcXYDd1m4EoCMOqC0bb0OGVo_zNx4SsHfkileTn0SNquT9_Dk1I0ULztHqpOvYMnSGfFqoJsKGYBXtjY0723Qj7KWnoUy163nEsh5fLnFLKI2Cqd_f0JKkDW4ZX8l3wYlYadMGro5pHBfSI3JX3FeuQ&h=Vv8OojbvuSJwpS-ZF1mI1NlamookaeDN_FwTP_gyC5o + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae0915fb-3270-495b-b9ee-3c30f42c8852?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021520290468173&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=ns_Dq4PU7LuUmEIt_cMPZIwWNSv6GyhQ_cy0piumRm4K9Gsy63W1EY2V6PemQ5qONUMjz-Qq_ZNvGPrwkGYJrcmP9DaTs_dKttm-EBbuZdHC9uUVsy9AeGqRDIhaHP9jnZgkuS9CYlFG47F0sjJV3JyFVh7kjayrWR5MeVc7Ro9bJcHl5idbEQnCkrk_ipFVLwnt6VuEw2a6fewTcPFixWYLioWRSy6KphlgVos0mGHomvUPzDFW62k_aTCmmOQtdICniXHGVm20auYsnQWYzALHqdONNoQk4MdwsBZ3r19iOI8yfcOvhNhqoYQbVqDWtmanIqW6ev4WBO_fCE-LuQ&h=teNaIhCnIKgcOHJwGvfhSmZ_7s2f9CRYw87WhQYIyF8 cache-control: - no-cache content-length: - - '3334' + - '3325' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:17 GMT + - Wed, 24 Dec 2025 05:47:08 GMT etag: - '"3"' expires: @@ -8388,15 +3104,15 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/add812dc-cba0-4784-8b58-cf2c7886aaf1 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/ca606a1d-a368-4b22-af15-970b14d0ef24 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1495,Microsoft.Compute/UpdateVMResource;11 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 1D59B6CFFBF448DDAA3F6B4F472EA576 Ref B: TYO201100114035 Ref C: 2025-04-02T09:35:16Z' + - 'Ref A: DAA5A3510F3C44C393B3583C93B48798 Ref B: SG2AA1040519062 Ref C: 2025-12-24T05:47:08Z' status: code: 200 message: '' @@ -8414,13 +3130,13 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/217d2ea8-be73-4bc4-a5b2-9fe0e96b63ef?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791833185404999&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=YdW19Tyxx--9ZuDhwTxQTwvfifTAQYxWg8IToe6Xkv2HXi2xEVmokIPcUYCQnvbhpJL8Wt0YOJtOVGFvQk0HvlBKTKJ4yAk4_DPzA6MoWpyqAjI1Nhs2JzjwMeAW-_aCPIwhOzbVG_8QnMbwxwYTb9ZBicnS7guJU_oxtb9ZMlFSjQntOqtkCLPsAzCQq4wqcXYDd1m4EoCMOqC0bb0OGVo_zNx4SsHfkileTn0SNquT9_Dk1I0ULztHqpOvYMnSGfFqoJsKGYBXtjY0723Qj7KWnoUy163nEsh5fLnFLKI2Cqd_f0JKkDW4ZX8l3wYlYadMGro5pHBfSI3JX3FeuQ&h=Vv8OojbvuSJwpS-ZF1mI1NlamookaeDN_FwTP_gyC5o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae0915fb-3270-495b-b9ee-3c30f42c8852?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021520290468173&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=ns_Dq4PU7LuUmEIt_cMPZIwWNSv6GyhQ_cy0piumRm4K9Gsy63W1EY2V6PemQ5qONUMjz-Qq_ZNvGPrwkGYJrcmP9DaTs_dKttm-EBbuZdHC9uUVsy9AeGqRDIhaHP9jnZgkuS9CYlFG47F0sjJV3JyFVh7kjayrWR5MeVc7Ro9bJcHl5idbEQnCkrk_ipFVLwnt6VuEw2a6fewTcPFixWYLioWRSy6KphlgVos0mGHomvUPzDFW62k_aTCmmOQtdICniXHGVm20auYsnQWYzALHqdONNoQk4MdwsBZ3r19iOI8yfcOvhNhqoYQbVqDWtmanIqW6ev4WBO_fCE-LuQ&h=teNaIhCnIKgcOHJwGvfhSmZ_7s2f9CRYw87WhQYIyF8 response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:35:18.2249748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"217d2ea8-be73-4bc4-a5b2-9fe0e96b63ef\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:47:08.9847437+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"ae0915fb-3270-495b-b9ee-3c30f42c8852\"\r\n}" headers: cache-control: - no-cache @@ -8429,7 +3145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:18 GMT + - Wed, 24 Dec 2025 05:47:09 GMT expires: - '-1' pragma: @@ -8443,13 +3159,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/e1ff9ccb-3028-4667-9b86-f8aa5af37f17 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/177849d5-2569-4660-b199-a5a8f2133078 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14990 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D875B644FA9D49DC875A920441A9EF27 Ref B: TYO201100114035 Ref C: 2025-04-02T09:35:18Z' + - 'Ref A: 7A7DAF572B9A4616A7C31D81678D6049 Ref B: SG2AA1070301042 Ref C: 2025-12-24T05:47:09Z' status: code: 200 message: '' @@ -8467,23 +3183,23 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/217d2ea8-be73-4bc4-a5b2-9fe0e96b63ef?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791833185404999&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=YdW19Tyxx--9ZuDhwTxQTwvfifTAQYxWg8IToe6Xkv2HXi2xEVmokIPcUYCQnvbhpJL8Wt0YOJtOVGFvQk0HvlBKTKJ4yAk4_DPzA6MoWpyqAjI1Nhs2JzjwMeAW-_aCPIwhOzbVG_8QnMbwxwYTb9ZBicnS7guJU_oxtb9ZMlFSjQntOqtkCLPsAzCQq4wqcXYDd1m4EoCMOqC0bb0OGVo_zNx4SsHfkileTn0SNquT9_Dk1I0ULztHqpOvYMnSGfFqoJsKGYBXtjY0723Qj7KWnoUy163nEsh5fLnFLKI2Cqd_f0JKkDW4ZX8l3wYlYadMGro5pHBfSI3JX3FeuQ&h=Vv8OojbvuSJwpS-ZF1mI1NlamookaeDN_FwTP_gyC5o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae0915fb-3270-495b-b9ee-3c30f42c8852?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021520290468173&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=ns_Dq4PU7LuUmEIt_cMPZIwWNSv6GyhQ_cy0piumRm4K9Gsy63W1EY2V6PemQ5qONUMjz-Qq_ZNvGPrwkGYJrcmP9DaTs_dKttm-EBbuZdHC9uUVsy9AeGqRDIhaHP9jnZgkuS9CYlFG47F0sjJV3JyFVh7kjayrWR5MeVc7Ro9bJcHl5idbEQnCkrk_ipFVLwnt6VuEw2a6fewTcPFixWYLioWRSy6KphlgVos0mGHomvUPzDFW62k_aTCmmOQtdICniXHGVm20auYsnQWYzALHqdONNoQk4MdwsBZ3r19iOI8yfcOvhNhqoYQbVqDWtmanIqW6ev4WBO_fCE-LuQ&h=teNaIhCnIKgcOHJwGvfhSmZ_7s2f9CRYw87WhQYIyF8 response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:35:18.2249748+00:00\",\r\n \"endTime\": - \"2025-04-02T09:35:26.9281932+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"217d2ea8-be73-4bc4-a5b2-9fe0e96b63ef\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:47:08.9847437+00:00\",\r\n \"endTime\": + \"2025-12-24T05:47:16.5786+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": + \"ae0915fb-3270-495b-b9ee-3c30f42c8852\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '181' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:48 GMT + - Wed, 24 Dec 2025 05:47:39 GMT expires: - '-1' pragma: @@ -8497,13 +3213,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/aa909a08-67c8-4df5-9091-df24f8daad7e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/35c459c6-734f-4c79-8810-015f5e1760bc x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A3310775CCF046E187886396033FD690 Ref B: TYO201100114035 Ref C: 2025-04-02T09:35:49Z' + - 'Ref A: F0BF2B2C42874583AE56034472D26BEF Ref B: SG2AA1070306054 Ref C: 2025-12-24T05:47:39Z' status: code: 200 message: '' @@ -8521,7 +3237,7 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -8530,19 +3246,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -8555,7 +3271,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -8563,17 +3279,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:48 GMT + - Wed, 24 Dec 2025 05:47:40 GMT etag: - '"3"' expires: @@ -8589,11 +3305,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23983,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 27D77675D54E4C54B52BF9239D07FC21 Ref B: TYO201100114035 Ref C: 2025-04-02T09:35:49Z' + - 'Ref A: 39542A2C28054142A6BF0F9F4461044C Ref B: SG2AA1070302025 Ref C: 2025-12-24T05:47:40Z' status: code: 200 message: '' @@ -8611,28 +3327,28 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -8645,7 +3361,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -8653,17 +3369,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:49 GMT + - Wed, 24 Dec 2025 05:47:41 GMT etag: - '"3"' expires: @@ -8679,11 +3395,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23982,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 01F928675D884A6C9B696658A57E8945 Ref B: TYO201100115017 Ref C: 2025-04-02T09:35:50Z' + - 'Ref A: FD73D9D345CB4AEEAFE8F6E5D6DCA38D Ref B: SG2AA1070301023 Ref C: 2025-12-24T05:47:41Z' status: code: 200 message: '' @@ -8701,21 +3417,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001","name":"sqlvm_cli_test_aad000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sqlvm_aad_auth_negative","date":"2025-04-02T09:26:53Z","module":"sqlvm","Creator":"v-jingszhang@microsoft.com","DateCreated":"2025-04-02T09:27:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001","name":"sqlvm_cli_test_aad000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sqlvm_aad_auth_negative","date":"2025-12-24T05:40:03Z","module":"sqlvm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '457' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:50 GMT + - Wed, 24 Dec 2025 05:47:43 GMT expires: - '-1' pragma: @@ -8729,7 +3445,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 32DC07E3562C4BEE98438223BDA1DA5B Ref B: TYO201151003054 Ref C: 2025-04-02T09:35:50Z' + - 'Ref A: B854E6BA9BF44B9B86C76B992743C725 Ref B: SG2AA1040513034 Ref C: 2025-12-24T05:47:42Z' status: code: 200 message: OK @@ -8751,21 +3467,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/other_msi?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/other_msi","name":"other_msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"27da3db5-acb0-4dd6-89fd-8be8cde60ab9","clientId":"b25a004f-2e92-465c-97ed-48749063417f"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/other_msi","name":"other_msi","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"776ac0d8-e71f-4961-ae72-3235942a91e7","clientId":"6ff550ee-f132-4cf9-97de-bc3d987b44f1"}}' headers: cache-control: - no-cache content-length: - - '444' + - '468' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:54 GMT + - Wed, 24 Dec 2025 05:47:45 GMT expires: - '-1' location: @@ -8779,13 +3495,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/05c6a9cc-183c-4423-bb5f-0d818a13a94a + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/b46a331b-ce4d-4463-8cfc-242bc664d240 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 615CD946F3CE4DBAA0A28F67DE4E8587 Ref B: TYO201151006029 Ref C: 2025-04-02T09:35:51Z' + - 'Ref A: C86432A5A2454531BBABC08458ED09D0 Ref B: SG2AA1070302036 Ref C: 2025-12-24T05:47:44Z' status: code: 201 message: Created @@ -8803,7 +3519,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -8812,19 +3528,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -8837,7 +3553,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -8845,17 +3561,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:54 GMT + - Wed, 24 Dec 2025 05:47:45 GMT etag: - '"3"' expires: @@ -8871,11 +3587,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23978,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A0C9EE3FE3CE41D1B1C2559BFC9AD6EF Ref B: TYO201100116035 Ref C: 2025-04-02T09:35:55Z' + - 'Ref A: 0AF2CEB2AC2441BBA32A5C97EE23702F Ref B: SG2AA1070304060 Ref C: 2025-12-24T05:47:46Z' status: code: 200 message: '' @@ -8893,7 +3609,7 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -8902,19 +3618,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -8927,7 +3643,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -8935,17 +3651,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:55 GMT + - Wed, 24 Dec 2025 05:47:47 GMT etag: - '"3"' expires: @@ -8961,11 +3677,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23977,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: FC17AA6B7D684687A6BAEA880C959B0D Ref B: TYO201100115023 Ref C: 2025-04-02T09:35:55Z' + - 'Ref A: 45CF3329ABFD478DACA12F798FFA92E3 Ref B: SG2AA1040518023 Ref C: 2025-12-24T05:47:46Z' status: code: 200 message: '' @@ -8983,28 +3699,28 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -9017,7 +3733,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -9025,17 +3741,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:35:56 GMT + - Wed, 24 Dec 2025 05:47:47 GMT etag: - '"3"' expires: @@ -9051,16 +3767,17 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23976,Microsoft.Compute/LowCostGetResource;31 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 35ED2E6687894C2AA03DAE4B8B0A3C99 Ref B: TYO201151006062 Ref C: 2025-04-02T09:35:56Z' + - 'Ref A: 2A7F093F6A5D4B0CBDF418FB9992017B Ref B: SG2AA1070302025 Ref C: 2025-12-24T05:47:47Z' status: code: 200 message: '' - request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned"}}' + body: '{"identity": {"userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi": + {}}, "type": "SystemAssigned,UserAssigned"}}' headers: Accept: - application/json @@ -9071,13 +3788,13 @@ interactions: Connection: - keep-alive Content-Length: - - '54' + - '252' Content-Type: - application/json ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -9085,22 +3802,22 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"98205e9c-c53d-4d0f-a8fb-9b39ce283257\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"15e6a625-bced-4c31-ac49-9bd078a8cfd6\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -9113,7 +3830,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -9121,21 +3838,21 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/53b3dafd-e426-4ee2-b897-39318fdad9f1?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791833606279743&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=UdPG7thojX2jFZOXPED0sTcx5Ixdp-Hs0uaE0XKuqvor23C-bnmFrBxuRbBAGOWwefXX0ErXWSruIq8Dg40SKfQmW7ni-nzi_fIJ2STbUB8xeEO-NiNuJ7JV3m_6YH8EiS41fDoRE3re7t6Kr3_uvPfjrp_OtcASBYnL8ys66eDKK2YVy86iEHv0kdi8gVrA5pKaV8ayVxMCLyep3M_mDzMlHR2ztG27WroyuvwwRg8aQih1BzAi06fNUG0ul7Z5bj9LqIPac4GY67dQadTPU2dEIV5FIfxRd-C8-oPINwTZWmaBPTdiKoj38QprSXiiUJmJEXqpiDBJbuJX-kqecQ&h=eBFZOAJPjReNXekbPyM8nGSLVJvT4-FAU9D0BZIVduw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65b325a4-5fd7-4840-b3ce-0af318ff95c7?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021520695063175&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=fyI5YX0M0eS6_8E8cI0htY4FVfnFHHVDv_Jk4Fvu1o7_qNmOV0Syb9w4YhaKh5UDvKUAuI7bt3YzMEY7o-Latj5fh7YBMOoVZg9A3GhnalpyR3FkvVJUs_oMGIseQJFcdao6vmu_aFUfFZylWTXD4VkiUdCRngAPi32Xm1IDwZcrFLDx6CTA1D7_ux5CJp6zk1ckjPnJounzvQEwtbL8c4MBvBAqSRAHrPD_2Ibe6q5cE5aLtaeh8RWVIgBxuzH-ZE65rakg9CKa1HD9WMlSPPYofvw7wT5boL39K6t3hnK0rC452UTK6cPC-BgXeBliOWVrjE_lEED_krGKsZau9Q&h=D6VJhAEyRE2gUZikUcijnGYH-DmyHkpEwO8EoxzdN7w cache-control: - no-cache content-length: - - '3599' + - '3590' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:00 GMT + - Wed, 24 Dec 2025 05:47:48 GMT etag: - '"4"' expires: @@ -9151,15 +3868,15 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8c0ff49e-995a-4261-b656-f546a2ee13fb + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/fa8a6e87-2e35-48c9-a5a1-87aabc1a5ed6 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1497,Microsoft.Compute/UpdateVMResource;11 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: AF483C99CF7B419BBDC602015385F7B7 Ref B: TYO201151004042 Ref C: 2025-04-02T09:35:57Z' + - 'Ref A: C7A0F25F343D48B597CBC127356F7BA7 Ref B: SG2AA1070303025 Ref C: 2025-12-24T05:47:48Z' status: code: 200 message: '' @@ -9177,13 +3894,13 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/53b3dafd-e426-4ee2-b897-39318fdad9f1?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791833606279743&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=UdPG7thojX2jFZOXPED0sTcx5Ixdp-Hs0uaE0XKuqvor23C-bnmFrBxuRbBAGOWwefXX0ErXWSruIq8Dg40SKfQmW7ni-nzi_fIJ2STbUB8xeEO-NiNuJ7JV3m_6YH8EiS41fDoRE3re7t6Kr3_uvPfjrp_OtcASBYnL8ys66eDKK2YVy86iEHv0kdi8gVrA5pKaV8ayVxMCLyep3M_mDzMlHR2ztG27WroyuvwwRg8aQih1BzAi06fNUG0ul7Z5bj9LqIPac4GY67dQadTPU2dEIV5FIfxRd-C8-oPINwTZWmaBPTdiKoj38QprSXiiUJmJEXqpiDBJbuJX-kqecQ&h=eBFZOAJPjReNXekbPyM8nGSLVJvT4-FAU9D0BZIVduw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65b325a4-5fd7-4840-b3ce-0af318ff95c7?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021520695063175&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=fyI5YX0M0eS6_8E8cI0htY4FVfnFHHVDv_Jk4Fvu1o7_qNmOV0Syb9w4YhaKh5UDvKUAuI7bt3YzMEY7o-Latj5fh7YBMOoVZg9A3GhnalpyR3FkvVJUs_oMGIseQJFcdao6vmu_aFUfFZylWTXD4VkiUdCRngAPi32Xm1IDwZcrFLDx6CTA1D7_ux5CJp6zk1ckjPnJounzvQEwtbL8c4MBvBAqSRAHrPD_2Ibe6q5cE5aLtaeh8RWVIgBxuzH-ZE65rakg9CKa1HD9WMlSPPYofvw7wT5boL39K6t3hnK0rC452UTK6cPC-BgXeBliOWVrjE_lEED_krGKsZau9Q&h=D6VJhAEyRE2gUZikUcijnGYH-DmyHkpEwO8EoxzdN7w response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:36:00.1941491+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"53b3dafd-e426-4ee2-b897-39318fdad9f1\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:47:49.4540408+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"65b325a4-5fd7-4840-b3ce-0af318ff95c7\"\r\n}" headers: cache-control: - no-cache @@ -9192,7 +3909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:00 GMT + - Wed, 24 Dec 2025 05:47:50 GMT expires: - '-1' pragma: @@ -9206,13 +3923,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/98b15f04-3993-4fc7-96a3-3372c7c98a24 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/f75f7105-6afc-481f-a25a-0ce1364203e2 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14993 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 09183959604E4296A4809C0EB09D0493 Ref B: TYO201151004042 Ref C: 2025-04-02T09:36:00Z' + - 'Ref A: 1E06C14FF6034AF387B9001C9EDD02DF Ref B: SG2AA1070302060 Ref C: 2025-12-24T05:47:50Z' status: code: 200 message: '' @@ -9230,14 +3947,14 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/53b3dafd-e426-4ee2-b897-39318fdad9f1?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791833606279743&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=UdPG7thojX2jFZOXPED0sTcx5Ixdp-Hs0uaE0XKuqvor23C-bnmFrBxuRbBAGOWwefXX0ErXWSruIq8Dg40SKfQmW7ni-nzi_fIJ2STbUB8xeEO-NiNuJ7JV3m_6YH8EiS41fDoRE3re7t6Kr3_uvPfjrp_OtcASBYnL8ys66eDKK2YVy86iEHv0kdi8gVrA5pKaV8ayVxMCLyep3M_mDzMlHR2ztG27WroyuvwwRg8aQih1BzAi06fNUG0ul7Z5bj9LqIPac4GY67dQadTPU2dEIV5FIfxRd-C8-oPINwTZWmaBPTdiKoj38QprSXiiUJmJEXqpiDBJbuJX-kqecQ&h=eBFZOAJPjReNXekbPyM8nGSLVJvT4-FAU9D0BZIVduw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/65b325a4-5fd7-4840-b3ce-0af318ff95c7?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021520695063175&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=fyI5YX0M0eS6_8E8cI0htY4FVfnFHHVDv_Jk4Fvu1o7_qNmOV0Syb9w4YhaKh5UDvKUAuI7bt3YzMEY7o-Latj5fh7YBMOoVZg9A3GhnalpyR3FkvVJUs_oMGIseQJFcdao6vmu_aFUfFZylWTXD4VkiUdCRngAPi32Xm1IDwZcrFLDx6CTA1D7_ux5CJp6zk1ckjPnJounzvQEwtbL8c4MBvBAqSRAHrPD_2Ibe6q5cE5aLtaeh8RWVIgBxuzH-ZE65rakg9CKa1HD9WMlSPPYofvw7wT5boL39K6t3hnK0rC452UTK6cPC-BgXeBliOWVrjE_lEED_krGKsZau9Q&h=D6VJhAEyRE2gUZikUcijnGYH-DmyHkpEwO8EoxzdN7w response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:36:00.1941491+00:00\",\r\n \"endTime\": - \"2025-04-02T09:36:07.7879746+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"53b3dafd-e426-4ee2-b897-39318fdad9f1\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:47:49.4540408+00:00\",\r\n \"endTime\": + \"2025-12-24T05:47:53.1885729+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"65b325a4-5fd7-4840-b3ce-0af318ff95c7\"\r\n}" headers: cache-control: - no-cache @@ -9246,7 +3963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:31 GMT + - Wed, 24 Dec 2025 05:48:21 GMT expires: - '-1' pragma: @@ -9260,13 +3977,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8ce0f434-5f0c-4662-8213-593f9d22d754 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/48250a57-2794-490f-8ddf-4be053d7aa50 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14983 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 497B7D59AFAD4C9E943F5A2A2F964A9A Ref B: TYO201151004042 Ref C: 2025-04-02T09:36:31Z' + - 'Ref A: E1F97DF99E934694B1F749D09489F9E6 Ref B: SG2AA1070303040 Ref C: 2025-12-24T05:48:21Z' status: code: 200 message: '' @@ -9284,7 +4001,7 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -9292,22 +4009,22 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"98205e9c-c53d-4d0f-a8fb-9b39ce283257\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"15e6a625-bced-4c31-ac49-9bd078a8cfd6\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -9320,7 +4037,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -9328,17 +4045,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:31 GMT + - Wed, 24 Dec 2025 05:48:21 GMT etag: - '"4"' expires: @@ -9354,11 +4071,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23980,Microsoft.Compute/LowCostGetResource;28 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;28 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F967FD71A3434EBF9CB1228A5D2013DC Ref B: TYO201151004042 Ref C: 2025-04-02T09:36:31Z' + - 'Ref A: F8B312CA8F964FE49F68A58E8679B764 Ref B: SG2AA1040519052 Ref C: 2025-12-24T05:48:22Z' status: code: 200 message: '' @@ -9376,30 +4093,30 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"98205e9c-c53d-4d0f-a8fb-9b39ce283257\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"15e6a625-bced-4c31-ac49-9bd078a8cfd6\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -9412,7 +4129,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -9420,17 +4137,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:31 GMT + - Wed, 24 Dec 2025 05:48:23 GMT etag: - '"4"' expires: @@ -9446,11 +4163,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23979,Microsoft.Compute/LowCostGetResource;27 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;27 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8959E60821C6463A8D7CF7312B591DA3 Ref B: TYO201151006062 Ref C: 2025-04-02T09:36:32Z' + - 'Ref A: 93CE67D7DC984D0380CBA6962EF7D0B8 Ref B: SG2AA1070305062 Ref C: 2025-12-24T05:48:23Z' status: code: 200 message: '' @@ -9468,7 +4185,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -9476,22 +4193,22 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"98205e9c-c53d-4d0f-a8fb-9b39ce283257\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"15e6a625-bced-4c31-ac49-9bd078a8cfd6\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -9504,7 +4221,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -9512,17 +4229,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:32 GMT + - Wed, 24 Dec 2025 05:48:23 GMT etag: - '"4"' expires: @@ -9538,11 +4255,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23978,Microsoft.Compute/LowCostGetResource;26 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;26 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9ED66D65C8C24108813A5DF7DB6BD095 Ref B: TYO201100113025 Ref C: 2025-04-02T09:36:32Z' + - 'Ref A: 8C97F91FE4BD4EC1B9A1624BD0465EC4 Ref B: SG2AA1040513023 Ref C: 2025-12-24T05:48:23Z' status: code: 200 message: '' @@ -9560,9 +4277,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/98205e9c-c53d-4d0f-a8fb-9b39ce283257/transitiveMemberOf/microsoft.graph.directoryRole + uri: https://graph.microsoft.com/v1.0/servicePrincipals/15e6a625-bced-4c31-ac49-9bd078a8cfd6/transitiveMemberOf/microsoft.graph.directoryRole response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryRoles","value":[]}' @@ -9574,11 +4291,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:34 GMT + - Wed, 24 Dec 2025 05:48:23 GMT odata-version: - '4.0' request-id: - - c7a5838d-3a8b-4bc1-b6e0-b36214d61d3b + - 0b3dad63-6acf-4bc6-b845-52e8b488df5a strict-transport-security: - max-age=31536000 transfer-encoding: @@ -9586,7 +4303,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF000198C0"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF00018371"}}' x-ms-resource-unit: - '2' status: @@ -9606,14 +4323,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=displayName%20eq%20'Microsoft%20Graph' response: body: - string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"a3efc889-f1b7-4532-9e01-91e32d1039f4\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft - Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":null,\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft - Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"Microsoft.Azure.AgregatorService\",\"https://dod-graph.microsoft.us\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"980db52a-afb6-4420-b0b2-23bf76ce409b\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft + Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":\"2025-11-19T22:28:39Z\",\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft + Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://dod-graph.microsoft.us\",\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"samlSingleSignOnSettings\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.\",\"displayName\":\"Read all access reviews\",\"id\":\"d07a8cc0-3d51-4b77-b3b0-32704d1f69fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AccessReview.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, update, delete and perform actions on access reviews, reviewers, @@ -9630,6 +4347,90 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.\",\"displayName\":\"Read and write all administrative units\",\"id\":\"5eb59dd3-1da2-4329-8733-9dabdc435916\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent cards and their skills in your organization's Agent + Registry without a signed-in user.\",\"displayName\":\"Read all agent cards + in Agent Registry\",\"id\":\"aec9e0a0-6f46-4150-a9f7-05e9e3e87399\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent cards and manage their + skills in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all agent cards in Agent Registry\",\"id\":\"ef566853-42d6-45a5-bed9-5ccb82c98b4f\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent cards that designate the calling app as their + manager and manage their skills in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent cards + in Agent Registry\",\"id\":\"9c4a07db-e0c1-4fb0-8e85-dfd8ae3b8201\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent card manifests in your organization's Agent Registry + without a signed-in user.\",\"displayName\":\"Read all agent card manifests + in Agent Registry\",\"id\":\"3ee18438-e6e5-4858-8f1c-d7b723b45213\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write to all agent card manifests in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent card manifests in Agent Registry\",\"id\":\"228b1a03-f7ca-4348-b50d-e8a547ab61af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write agent card manifests that name it as manager in + your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write managed-by agent card manifests in Agent Registry\",\"id\":\"77f6034c-52f5-4526-9fa1-d55a67e72cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all collections and their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read all collections + in Agent Registry\",\"id\":\"e65ee1da-d1d5-467b-bdd0-3e9bb94e6e0c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all collections and manage their + membership in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all collections in Agent Registry\",\"id\":\"feb31d7d-a227-4487-898c-e014840d07b3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete collections that designate the + calling app as their manager and manage their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + managed-by collections in Agent Registry\",\"id\":\"2e0fb698-9996-479f-926b-ce63f4397829\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create agent identities, even if the app is not the parent agent + identity blueprint.\",\"displayName\":\"Create agent identities without an + agent blueprint parent\",\"id\":\"ad25cc1d-84d8-47df-a08e-b34c2e800819\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create linked agent identities without a signed-in user.\",\"displayName\":\"Create + agent identities linked to itself.\",\"id\":\"4c390976-b2b7-42e0-9187-c6be3bead001\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.CreateAsManager\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to delete and restore agent identities without a signed-in user.\",\"displayName\":\"Delete + and restore agent identities\",\"id\":\"5b016f9b-18eb-41d4-869a-66931914d1c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to enable or disable agent identities without a signed-in user.\",\"displayName\":\"Enable + or disable agent identities\",\"id\":\"69ee0943-4fa4-4ec8-8e52-d12e4ea661a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identities without a signed-in user.\",\"displayName\":\"Read + all agent identities\",\"id\":\"b2b8f011-2898-4234-9092-5059f6c1ebfa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app read, update, and delete agent identities without a signed-in user.\",\"displayName\":\"Read + and write all agent identities\",\"id\":\"dcf7150a-88d4-4fe6-9be1-c2744c455397\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint credentials without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint credentials\",\"id\":\"0510736e-bdfb-4b37-9a1f-89b4a074763a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprints without a signed-in user.\",\"displayName\":\"Create + agent identity blueprints.\",\"id\":\"ea4b2453-ad2d-4d94-9155-10d5d9493ce9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"3f80b699-6405-4e36-a4df-4f19950ff91e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identity blueprints without a signed-in user.\",\"displayName\":\"Read + all agent identity blueprints\",\"id\":\"7547a7d1-36fa-4479-9c31-559a600eaa4f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprints without a signed-in + user.\",\"displayName\":\"Read and write all agent identity blueprints.\",\"id\":\"7fddd33b-d884-4ec0-8696-72cff90ff825\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint authorization and authentication properties + without a signed-in user.\",\"displayName\":\"Update agent identity blueprint + authorization and authentication properties\",\"id\":\"19202363-278e-49c2-bf00-391e2ba00881\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint branding without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint branding\",\"id\":\"76232daa-a1e4-4544-b664-495a006513bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"8959696d-d07e-4916-9b1e-3ba9ce459161\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f86a2dd8-9298-4675-bd78-f5a3572da2d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + enabling or disabling agent identity blueprint principals without a signed-in + user.\",\"displayName\":\"Enable or disable agent identity blueprint principals.\",\"id\":\"a0bdd23d-8b19-4682-b428-574d96527c6f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + reading agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Read + agent identity blueprint principals.\",\"id\":\"9361dea9-4524-493d-941d-f1b65aaf6c7c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprint principals without + a signed-in user.\",\"displayName\":\"Read and write all agent identity blueprint + principals.\",\"id\":\"3bc933bc-8b4d-4cb6-ac49-b73774299250\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent ID user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"b782c9ad-6f2b-4894-a21b-72bf22417f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update ID agent user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"4aa6e624-eee0-40ab-bdd8-f9639038a614\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent instances and their related collections in your + organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + all agent instances in Agent Registry\",\"id\":\"799a4732-85b8-4c67-b048-75f0e88a232b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent instances in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent instances in Agent Registry\",\"id\":\"07abdd95-78dc-4353-bd32-09f880ea43d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete agent instances that designate + the calling app as their manager in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent instances + in Agent Registry\",\"id\":\"782ab1bf-24f1-4c27-8bbc-2006d42792a6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read terms of use agreements, without a signed in user.\",\"displayName\":\"Read all terms of use agreements\",\"id\":\"2f3e6f8c-093b-4c57-a58b-ba5ce494a169\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Agreement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write terms of use agreements, without a signed in user.\",\"displayName\":\"Read @@ -9653,12 +4454,14 @@ interactions: and write the remote desktop security configuration for all apps\",\"id\":\"3be0012a-cc4e-426b-895b-f9c836bf6381\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application-RemoteDesktopConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all applications and service principals without a signed-in user.\",\"displayName\":\"Read all applications\",\"id\":\"9a5d68dd-52b0-4cc2-bd40-abcf44ac3a30\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update all apps in your organization, without a signed-in + user.\",\"displayName\":\"Read and update all apps\",\"id\":\"fc023787-fd04-4e44-9bc7-d454f00c0f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadUpdate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.\",\"displayName\":\"Read and write all applications\",\"id\":\"1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in - user. \\u00A0It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage + user. It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage apps that this app creates or owns\",\"id\":\"18a4783c-866b-4cc7-a460-3d5e5662c884\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without @@ -9673,7 +4476,11 @@ interactions: a signed-in user.\",\"displayName\":\"Read attack simulation data of an organization\",\"id\":\"93283d0a-6322-4fa8-966b-8c121624760d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, and update attack simulation and training data for an organization without a signed-in user.\",\"displayName\":\"Read, create, - and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + activity audit log from the audit store.\",\"displayName\":\"Read activity + audit log from the audit store.\",\"id\":\"99bc85fb-e857-4220-9f8c-3a1c83148d2e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"displayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"f6318678-2713-4bb6-b123-233e7336c1bd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query your audit log activities, without a signed-in user.\",\"displayName\":\"Read all audit log data\",\"id\":\"b0afded3-3588-46d8-8b3d-9842eff778da\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query audit logs from Dynamics CRM workload, without a @@ -9768,6 +4575,8 @@ interactions: basic details of calendars in all mailboxes \",\"id\":\"8ba4a692-bc31-4128-9094-475872af8a53\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete events of all calendars without a signed-in user.\",\"displayName\":\"Read and write calendars in all mailboxes\",\"id\":\"ef54d2bf-783f-4e0f-bca1-3210c0444d99\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all AI Insights for all calls, without a signed-in user.\",\"displayName\":\"Read + all AI Insights for calls.\",\"id\":\"792b782b-7822-4b92-8103-77e44f2f706c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallAiInsights.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read delegation settings of you\",\"displayName\":\"Read delegation settings\",\"id\":\"5aa33e77-b893-495e-bdc5-4bf6f27d42a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallDelegation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write delegation settings of you\",\"displayName\":\"Read @@ -9778,6 +4587,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read all call events\",\"id\":\"1abb026f-7572-49f6-9ddd-ad61cbba181e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallEvents.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all PSTN and direct routing call log data without a signed-in user.\",\"displayName\":\"Read PSTN and direct routing call log data\",\"id\":\"a2611786-80b3-417e-adaa-707d4261a5f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecord-PstnCalls.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call recordings for all calls without a signed-in user.\",\"displayName\":\"Read + all call recordings\",\"id\":\"ce8fb1f1-5e1f-44a0-b102-4ec28454d0dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecordings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read call records for all calls and online meetings without a signed-in user.\",\"displayName\":\"Read all call records\",\"id\":\"45bbb07e-7321-4fd7-a8f6-3ff27e6a81c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecords.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to get direct access to media streams in a call, without a signed-in @@ -9789,13 +4600,15 @@ interactions: meetings in your organization, without a signed-in user.\",\"displayName\":\"Initiate outgoing group calls from the app\",\"id\":\"4c277553-8a09-487b-8023-29ee378d8324\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.InitiateGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to join group calls and scheduled meetings in your organization, without - a signed-in user. \\u00A0The app will be joined with the privileges of a directory + a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.\",\"displayName\":\"Join group calls and meetings as an app\",\"id\":\"f6b49018-60ab-4f81-83bd-22caeabfed2d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to anonymously join group calls and scheduled meetings in your organization, - without a signed-in user. \\u00A0The app will be joined as a guest to meetings - in your organization.\",\"displayName\":\"Join group calls and meetings as - a guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. The app will be joined as a guest to meetings in + your organization.\",\"displayName\":\"Join group calls and meetings as a + guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call transcripts for all calls without a signed-in user.\",\"displayName\":\"Read + all call transcripts\",\"id\":\"4cd61b6d-8692-40bf-9d90-7f38db5e5fce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallTranscripts.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows to read all Change Management items.\",\"displayName\":\"Read Change Management items\",\"id\":\"418dae40-2b65-4819-900c-519a04e4d278\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChangeManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Create channels in any team, without a signed-in user.\",\"displayName\":\"Create @@ -9820,7 +4633,7 @@ interactions: and write the names, descriptions, and settings of all channels, without a signed-in user.\",\"displayName\":\"Read and write the names, descriptions, and settings of all channels\",\"id\":\"243cded2-bd16-4fd6-a953-ff8177894c3d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create chats without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create chats without a signed-in user. \",\"displayName\":\"Create chats\",\"id\":\"d9c48af6-9ad9-47ad-82c3-63757137b9af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to delete and recover deleted chats, without a signed-in user.\",\"displayName\":\"Delete and recover deleted chats\",\"id\":\"9c7abde0-eacd-4319-bf9e-35994b1a1717\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.ManageDeletion.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -9881,26 +4694,42 @@ interactions: the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.\",\"displayName\":\"Read and write all consent requests\",\"id\":\"9f1b81a7-0223-4428-bfa4-0bcb5535f27d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all contacts in all mailboxes + without a signed-in user.\",\"displayName\":\"Read and update the on-premises + sync behavior of contacts\",\"id\":\"c8948c23-e66b-42db-83fd-770b71ab78d2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read contacts in all mailboxes\",\"id\":\"089fe4d0-434a-44c5-8827-41ba8a0b17f5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read and write contacts in all mailboxes\",\"id\":\"6918b873-d17a-4dc1-b314-35f528134491\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"displayName\":\"Process content for + data security, governance and compliance\",\"id\":\"5ad511bf-571c-4ef6-8c3c-85b94b85df98\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"displayName\":\"Process content for data + security, governance and compliance\",\"id\":\"24ceb246-ad29-4680-90b4-3e91ffad15eb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + contents activity audit log from the audit store.\",\"displayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"368425e7-6954-4f5a-9d92-90b75bd580c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"displayName\":\"Upload + content activity audit logs to the audit store.\",\"id\":\"2932e07a-3c29-44e4-bb36-6d0fc176387f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read packages information without a signed-in user.\",\"displayName\":\"Read + all packages information\",\"id\":\"72f0655d-6228-4ddc-8e1b-164973b9213b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update packages information without a signed-in user.\",\"displayName\":\"Read + and update all packages information\",\"id\":\"ed31732f-9495-47ed-ba3b-4ed0948c1c64\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem without a signed-in user.\",\"displayName\":\"Read cross-tenant basic information\",\"id\":\"cac88765-0581-4025-9725-5ebc13f729ee\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export external user data (e.g. customer content or system-generated + with the current tenant without a signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read + all shared cross-tenant user profiles and export their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to list and query any shared user profile information associated + with the current tenant without a signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant user profiles and export - their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export and remove external user data (e.g. customer content - or system-generated logs), for any user associated with the current tenant - without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant - user profiles and export or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's custom authentication extensions without a signed-in user.\",\"displayName\":\"Read all custom authentication extensions\",\"id\":\"88bb2658-5d9e-454f-aacd-a3933e079526\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CustomAuthenticationExtension.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's custom authentication extensions @@ -10026,10 +4855,15 @@ interactions: all Azure AD recommendations\",\"id\":\"ae73097b-cb2a-4447-b064-5d80f6093921\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update all Azure AD recommendations, without a signed-in user.\",\"displayName\":\"Read and update all Azure AD recommendations\",\"id\":\"0e9eea12-4f01-45f6-9b8d-3ea4c8144158\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read internal federation configuration for a domain.\",\"displayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"c0e5a7b0-e8b7-40a7-b8e0-8249e6ea81d5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"displayName\":\"Create, read, update and delete internal + federation configuration for a domain.\",\"id\":\"64d40371-8d58-4270-bc8a-b4a66de36b9a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all domain properties without a signed-in user.\",\"displayName\":\"Read domains\",\"id\":\"dbb9058a-0e50-45d7-ae91-66909b5d4664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all domain properties without a signed in user. - \\u00A0Also allows the app to add, \\u00A0verify and remove domains.\",\"displayName\":\"Read + \ Also allows the app to add, verify and remove domains.\",\"displayName\":\"Read and write domains\",\"id\":\"7e05723c-0bb0-42da-be95-ae9f08a6e53c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.\",\"displayName\":\"Read @@ -10041,16 +4875,16 @@ interactions: Education app settings\",\"id\":\"7c9db06a-ec2d-4e7b-a592-5a1e30992566\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Manage the state and settings of all Microsoft education apps.\",\"displayName\":\"Manage education app settings\",\"id\":\"9bc431c3-b8bc-4a8d-a219-40f10f92eff6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments with grades for all users without - a signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments without grades for all users without + the app to read all class assignments with grades for all users without a + signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all class assignments without grades for all users without a signed-in user.\",\"displayName\":\"Read all class assignments without grades\",\"id\":\"6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments with - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments without - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments with grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments without grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all modules and resources, without a signed-in user.\",\"displayName\":\"Read all class modules and resources\",\"id\":\"6cdb464c-3a03-40f8-900b-4cb7ea1da9c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduCurricula.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all modules and resources, without a signed-in user.\",\"displayName\":\"Read @@ -10079,6 +4913,14 @@ interactions: and write the organization's roster\",\"id\":\"d1808e82-ce13-47af-ae0d-f9b254e6d58a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduRoster.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create Viva Engage conversations without a signed-in user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"e1d2136d-eaaf-427a-a7db-f97dbe847c27\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Migration.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage conversations, and to read their properties without + a signed-in user.\",\"displayName\":\"Read all Viva Engage conversations\",\"id\":\"2c495153-cd0e-41b4-9980-3bcecf1ca22f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create Viva Engage conversations, read all conversation properties, + update conversation properties, and delete conversations without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"bfbd4840-fba0-43a7-93a9-465b687e47d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage Teams QA conversations, and to read their properties + without a signed-in user.\",\"displayName\":\"Read all Viva Engage Teams QA + conversations\",\"id\":\"d746beae-b46e-446e-924a-5b805a5c4467\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to list all Viva Engage roles and role memberships without a signed-in user.\",\"displayName\":\"Read all Viva Engage roles and role memberships\",\"id\":\"30614864-4114-45ef-bdd9-0dd7894a1cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementRole.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to assign Viva Engage role to a user, and remove a Viva Engage role @@ -10095,6 +4937,8 @@ interactions: the app to read or write your organization's authentication event listeners without a signed-in user.\",\"displayName\":\"Read and write all authentication event listeners\",\"id\":\"0edf5e9e-4ce8-468a-8432-d08631d18c43\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EventListener.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to search the email message trace, without a signed-in user.\",\"displayName\":\"Search + the email message trace\",\"id\":\"89b20d8a-76e2-4057-867b-9961f800b9a4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all external connections without a signed-in user.\",\"displayName\":\"Read all external connections\",\"id\":\"1914711b-a1cb-4793-b019-c2ce0ed21b8c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExternalConnection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all external connections without a signed-in user.\",\"displayName\":\"Read @@ -10136,15 +4980,21 @@ interactions: without a signed-in user. The specific file storage containers and the permissions granted to them will be configured in Microsoft 365 by the developer of each container type.\",\"displayName\":\"Access selected file storage containers\",\"id\":\"40dc41bc-0f7e-42ff-89bd-d9516947e474\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainer.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to manage file storage container type registrations without + a signed-in user.\",\"displayName\":\"Access selected file storage container + type registrations\",\"id\":\"2dcc6599-bd30-442b-8f11-90f88ad441dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read all group conversations\",\"id\":\"4f0a8235-6f6f-4ec7-9500-34b452a4a0c3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read and write all group conversations\",\"id\":\"6679c91b-820a-4900-ab47-e97b197a89c4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all groups without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + groups\",\"id\":\"2d9bd318-b883-40be-9df7-63ec4fcdc424\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups without a signed-in user.\",\"displayName\":\"Create groups\",\"id\":\"bf7b1a76-6e77-406b-b258-bf5c7720e98f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read group properties and memberships, and read\\u00A0conversations - for all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read group properties and memberships, and read conversations for + all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by @@ -10155,6 +5005,11 @@ interactions: of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.\",\"displayName\":\"Read and write all group memberships\",\"id\":\"dbaae8cf-10b5-4b86-a4a1-f871c94c6695\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupMember.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + without a signed-in user.\",\"displayName\":\"Read all group settings\",\"id\":\"f3c4f514-c65a-43f5-bfce-1735872258dd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects, without a signed-in user.\",\"displayName\":\"Read + and write all group settings\",\"id\":\"546168c3-1183-4281-9491-fafb24dea37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all scenario health monitoring alerts, without a signed-in user.\",\"displayName\":\"Read all scenario health monitoring alert\",\"id\":\"5183ed5d-b7f8-4e9a-915e-dafb46b9cb62\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"HealthMonitoringAlert.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all scenario monitoring alerts, without a signed-in @@ -10174,7 +5029,11 @@ interactions: information\",\"id\":\"6e472fd1-ad78-48da-a0f0-97ab2c6b769e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event - detections.\\u00A0\",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + detections. \",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read the risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read all risky agents information\",\"id\":\"4aadfb66-d49a-414a-a883-d8c240b6fa33\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read and write risky agents information\",\"id\":\"dca4e4fd-a7cf-4e6f-86d1-d1ec094d766e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all risky service principal information for your organization, without a signed-in user.\",\"displayName\":\"Read all identity risky service principal information\",\"id\":\"607c7344-0eed-41e5-823a-9695ebe1b7b0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyServicePrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -10185,8 +5044,8 @@ interactions: without a signed in user.\",\"displayName\":\"Read all identity risky user information\",\"id\":\"dc5007c0-2d7d-4c42-879c-2dab87571379\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risky user information for your organization - without a signed-in user. \\u00A0Update operations include dismissing risky - users.\",\"displayName\":\"Read and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. Update operations include dismissing risky users.\",\"displayName\":\"Read + and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's user flows, without a signed-in user.\",\"displayName\":\"Read all identity user flows\",\"id\":\"1b0c317f-dd31-4305-9932-259a8b6e8099\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityUserFlow.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's user flows, without a signed-in @@ -10242,9 +5101,9 @@ interactions: directory, without a signed-in user.\",\"displayName\":\"Read and write all assignments\",\"id\":\"236c1cbd-1187-427f-b0f5-b1852454973b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningAssignedCourse.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all learning content in the organization's directory, without - a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - all learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - without a signed-in user.\",\"displayName\":\"Manage all\\u00A0learning\\u00A0content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to manage all learning content in the organization's directory, without + a signed-in user.\",\"displayName\":\"Manage all learning content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read data for all self-initiated courses in the organization's directory, without a signed-in user.\",\"displayName\":\"Read all self-initiated courses\",\"id\":\"467524fc-ed22-4356-a910-af61191e3503\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningSelfInitiatedCourse.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -10284,6 +5143,10 @@ interactions: the application to access a subset of lists without a signed in user. The specific lists and the permissions granted will be configured in SharePoint Online.\",\"displayName\":\"Access selected Lists without a signed in user.\",\"id\":\"23c5a9bd-d900-4ecf-be26-a0689755d9e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all email, including contents + of non-draft emails in user mailboxes, without a signed-in user. Does not + include permission to send mail.\",\"displayName\":\"Read and write mail in + all mailboxes, including modifying existing non-draft mails\",\"id\":\"e118f1da-5c1c-46cf-bff6-8858d786f46f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail-Advanced.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read mail in all mailboxes without a signed-in user.\",\"displayName\":\"Read mail in all mailboxes\",\"id\":\"810c84a8-4a9e-49e6-bf7d-12d183f40d01\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read basic mail properties in all mailboxes without a signed-in @@ -10297,10 +5160,16 @@ interactions: and write mail in all mailboxes\",\"id\":\"e2a3a72e-5f79-4c64-b1b1-878b674786c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send mail as any user without a signed-in user.\",\"displayName\":\"Send mail as any user\",\"id\":\"b633e1c5-b582-4048-a93e-9f11b44c7e96\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Send\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all users' UserConfiguration objects.\",\"displayName\":\"Read + all users' UserConfiguration objects\",\"id\":\"27d9d776-f4d2-426d-80ad-5f22f2b01b0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all users' UserConfiguration objects.\",\"displayName\":\"Read + and write all users' UserConfiguration objects\",\"id\":\"aa6d92d4-b25a-4640-aefe-3e3231e5e736\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read all the users' mailbox folders\",\"id\":\"99280d24-a782-4793-93cc-0888549957f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read and write all the users' mailbox folders\",\"id\":\"fef87b92-8391-4589-9da7-eb93dab7dc8a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to export all the users' mailbox items, without signed-in user.\",\"displayName\":\"Export + all the users' mailbox items\",\"id\":\"937550e9-33a3-494b-88ae-d9cd394b1fbb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to backup, restore, and modify all mailbox items without a signed-in user.\",\"displayName\":\"Allows the app to perform backup and restore for all mailbox items\",\"id\":\"76577085-e73d-4f1d-b26a-85fb33892327\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.ImportExport.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -10378,11 +5247,11 @@ interactions: without a signed in user.\",\"displayName\":\"Manage on-premises published resources\",\"id\":\"0b57845e-aa49-4e6f-8109-ce654fffa618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OnPremisesPublishingProfiles.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organization and related resources, without a signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. Related resources include things like subscribed skus and tenant branding + information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write the organization and related resources, without - a signed-in user.\\u00A0Related resources include things like subscribed skus - and tenant branding information.\",\"displayName\":\"Read and write organization + a signed-in user. Related resources include things like subscribed skus and + tenant branding information.\",\"displayName\":\"Read and write organization information\",\"id\":\"292d869f-3427-49a8-9dab-8c70152b74e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organizational branding information, without a signed-in user.\",\"displayName\":\"Read organizational branding information\",\"id\":\"eb76ac34-0d62-4454-b97c-185e4250dc20\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OrganizationalBranding.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -10453,6 +5322,8 @@ interactions: user.\",\"displayName\":\"Read and write telemetry for all workplace devices.\",\"id\":\"27fc435f-44e2-4b30-bf3c-e0ce74aed618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PlaceDeviceTelemetry.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all your organization's policies without a signed in user.\",\"displayName\":\"Read your organization's policies\",\"id\":\"246dd0d5-5bd0-4def-940b-0421030a5b68\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all authentication method policies for the tenant, without + a signed-in user. \",\"displayName\":\"Read authentication method policies\",\"id\":\"8e3bc81b-d2f3-4b7b-838c-32c88218d2f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's conditional access policies, without a signed-in user.\",\"displayName\":\"Read your organization's conditional access policies\",\"id\":\"37730810-e9ba-4e46-b07e-8ca78d182097\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.ConditionalAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -10478,8 +5349,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read and write authentication flow policies\",\"id\":\"25f85f3c-f66c-4205-8cd5-de92dd7f0cec\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all authentication method policies for the tenant, - without a signed-in user.\\u00A0\",\"displayName\":\"Read and write all authentication - method policies\\u00A0\",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. \",\"displayName\":\"Read and write all authentication + method policies \",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's authorization policy without a signed in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.\",\"displayName\":\"Read @@ -10490,9 +5361,13 @@ interactions: the app to read and write your organization's consent requests policy without a signed-in user.\",\"displayName\":\"Read and write your organization's consent request policy\",\"id\":\"999f8c63-0a38-4f1b-91fd-ed1947bdd1a9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read and write your organization's cross tenant access policies + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"displayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities without a signed-in user.\",\"displayName\":\"Read and write your organization's - cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + M365 cross tenant access capabilities\",\"id\":\"a6325ae7-2b73-4dbd-abed-fbeacfbf8696\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and write your organization's device configuration policies without a signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -10530,7 +5405,7 @@ interactions: includes activity, availability, status note, calendar out-of-office message, time zone and location.\",\"displayName\":\"Read and write presence information for all users\",\"id\":\"83cded22-8297-4ff6-a7fa-e97e9545a259\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Presence.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read printers without a signed-in user.\\u00A0\",\"displayName\":\"Read + the application to read printers without a signed-in user. \",\"displayName\":\"Read printers\",\"id\":\"9709bb33-4549-49d4-8ed9-a8f65e45bb0f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Printer.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update printers without a signed-in user. Does not allow creating (registering) or deleting (unregistering) printers.\",\"displayName\":\"Read @@ -10540,19 +5415,19 @@ interactions: read and update the metadata of print jobs.\",\"displayName\":\"Perform advanced operations on print jobs\",\"id\":\"58a52f47-9e36-4b17-9ebe-ce4ef7f3e6c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the metadata and document content of print jobs without - a signed-in user.\\u00A0\",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read the metadata of print jobs without a signed-in user.\\u00A0Does - not allow access to print job document content.\",\"displayName\":\"Read basic - information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user. \",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read the metadata of print jobs without a signed-in user. + Does not allow access to print job document content.\",\"displayName\":\"Read + basic information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata and document content of print jobs without a signed-in user.\",\"displayName\":\"Read and write print jobs\",\"id\":\"5114b07b-2898-4de7-a541-53b0004e2e13\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata of print jobs without a signed-in - user.\\u00A0Does not allow access to print job document content.\",\"displayName\":\"Read + user. Does not allow access to print job document content.\",\"displayName\":\"Read and write basic information for print jobs\",\"id\":\"57878358-37f4-4d3a-8c20-4816e0d457b1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read tenant-wide print settings without a signed-in user.\",\"displayName\":\"Read tenant-wide print settings\",\"id\":\"b5991872-94cf-4652-9765-29535087c6d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update print task definitions without a signed-in - user.\\u00A0\",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. \",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles in your organization, without a signed-in user.\",\"displayName\":\"Read privileged @@ -10603,6 +5478,14 @@ interactions: the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.\",\"displayName\":\"Manage all programs\",\"id\":\"60a901ed-09f7-4aa5-a16e-7dd3d6f9de36\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"displayName\":\"Compute Purview + policies at tenant scope\",\"id\":\"e5a76501-dbb0-492c-ab55-5d09e8837263\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"displayName\":\"Compute Purview + policies for an individual user\",\"id\":\"fe696d63-5e1f-4515-8232-cccc316903c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and query your provisioning log activities, without a signed-in + user.\",\"displayName\":\"Read all provisioning log data\",\"id\":\"091937d3-3e38-47a1-8649-b2f99d3035f1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProvisioningLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, without a signed-in user.\",\"displayName\":\"Read all @@ -10613,9 +5496,12 @@ interactions: and write all certificate based authentication configurations\",\"id\":\"a2b63618-5350-462d-b1b3-ba6eb3684e26\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PublicKeyInfrastructure.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows an app to read all question and answers, without a signed-in user.\",\"displayName\":\"Read all Question and Answers \",\"id\":\"ee49e170-1dd1-4030-b44c-61ad6e98f743\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"QnA.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get direct access to real-time enriched data in a meeting, without + a signed-in user.\",\"displayName\":\"Access real-time enriched data in a + meeting as an app\",\"id\":\"abafe00f-ea87-4c63-b8a8-0e7bb0a88144\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read - Records Management configuration,\\u00A0labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + Records Management configuration, labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read and write Records Management configuration, labels and policies\",\"id\":\"eb158f57-df43-4751-8b21-b8932adb3d34\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -10758,6 +5644,17 @@ interactions: the app to read your organization\u2019s security events without a signed-in user. Also allows the app to update editable properties in security events.\",\"displayName\":\"Read and update your organization\u2019s security events\",\"id\":\"d903a879-88e0-4c09-b0c9-82f6a1333f84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all the identity security available identity accounts without + a signed-in user.\",\"displayName\":\"Read all identity security available + identity accounts\",\"id\":\"c5bc96f5-b4a1-4cfc-8189-d5f0d772278f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write identity security available actions without a signed-in + user.\",\"displayName\":\"Read and perform all identity security available + actions\",\"id\":\"af2bf46f-7bf1-4be3-8bad-e17e279e8462\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read sensors window auditing configuration without a signed-in + user\",\"displayName\":\"Read sensors window auditing configuration\",\"id\":\"58971758-9844-4fe4-9fba-7e4ce7a659bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write sensors window auditing configuration without a + signed-in user\",\"displayName\":\"Read and write sensors window auditing + configuration\",\"id\":\"4f1f0deb-08d1-4ffb-8cca-21dfc362b7c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the identity security health issues without a signed-in user.\",\"displayName\":\"Read all identity security health issues\",\"id\":\"f8dcd971-5d83-4e1e-aa95-ef44611ad351\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesHealth.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write identity security health issues without a signed-in @@ -10775,7 +5672,17 @@ interactions: the app to read all security incidents, without a signed-in user.\",\"displayName\":\"Read all security incidents\",\"id\":\"45cc0394-e837-488b-a098-1918f48d186c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write to all security incidents, without a signed-in user.\",\"displayName\":\"Read - and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, without + a signed-in user.\",\"displayName\":\"Evaluate sensitivity labels\",\"id\":\"57f0b71b-a759-45a0-9a0f-cc099fbd9a44\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to evaluate all sensitivity label.\",\"displayName\":\"Evaluate labels + tenant scope.\",\"id\":\"986fa56a-6680-4aac-af09-4d1765376739\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels application + scope.\",\"id\":\"3b8e7aad-f6e3-4299-83f8-6fc6a5777f0b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels tenant scope.\",\"id\":\"e46a01e9-b2cf-4d89-8424-bcdc6dd445ab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabels.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all Sentiment Survey, without a signed-in user. \",\"displayName\":\"Export + all Sentiment Survey\",\"id\":\"84fa35c1-f997-4c1c-894c-bb52108cfbbf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SentimentSurvey.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Exchange service activity, without a signed-in user.\",\"displayName\":\"Read all Exchange service activity\",\"id\":\"2b655018-450a-4845-81e7-d603b1ebffdb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServiceActivity-Exchange.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Microsoft 365 Web service activity, without a signed-in @@ -10794,6 +5701,12 @@ interactions: principal endpoints\",\"id\":\"5256681e-b7f6-40c0-8447-2d9db68797a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to update service principal endpoints\",\"displayName\":\"Read and update service principal endpoints\",\"id\":\"89c8469c-83ad-45f7-8ff2-6e3d4285709e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, without a signed-in user.\",\"displayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"a0521574-fcd8-4742-b29c-f796df57ea70\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, without a signed-in user.\",\"displayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"id\":\"f5fa52a5-b9ab-4dc3-885e-9e5b4a67068e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the tenant-level settings of SharePoint and OneDrive, without a signed-in user.\",\"displayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"83d4163d-a2d8-4d3b-9695-4ae3ca98f888\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointTenantSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -10804,10 +5717,18 @@ interactions: all users' short notes\",\"id\":\"0c7d31ec-31ca-4f58-b6ec-9950b6b0de69\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, edit, and delete all the short notes without a signed-in user.\",\"displayName\":\"Read, create, edit, and delete all users' short - notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your organization's sign-in identifiers, without a signed-in + user.\",\"displayName\":\"Read all sign-in identifiers\",\"id\":\"28e1fe78-598f-4df4-b55e-18bf34218925\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's sign-in identifiers, without + a signed-in user.\",\"displayName\":\"Read and write all sign-in identifiers\",\"id\":\"7fc588a2-ea2d-4d1f-bcf7-33c324b149b8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to archive/reactivate site collections without a signed in user.\",\"displayName\":\"Archive/reactivate Site Collections without a signed - in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the application to create site collections without a signed in user. Upon + creation the application will be granted Sites.Selected(application) + FullControl + to the newly created site.\",\"displayName\":\"Create Site Collections without + a signed in user.\",\"id\":\"80819dd8-2b3b-4551-a1ad-2700fc44f533\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to have full control of all site collections without a signed in user.\",\"displayName\":\"Have full control of all site collections\",\"id\":\"a82116e5-55eb-4c41-a434-62fe8a61c773\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.FullControl.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create or delete document libraries and lists in all site collections @@ -10819,19 +5740,21 @@ interactions: site collections without a signed in user.\",\"displayName\":\"Read and write items in all site collections\",\"id\":\"9492366f-7969-46a4-8d15-ed1a20078fff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to access a subset of site collections without a signed in - user.\\u00A0\\u00A0The specific site collections and the permissions granted - will be configured in SharePoint Online.\",\"displayName\":\"Access selected - site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. The specific site collections and the permissions granted will be configured + in SharePoint Online.\",\"displayName\":\"Access selected site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read SPIFFE trust domains and child resources\",\"id\":\"dcdfc277-41fd-4d68-ad0c-c3057235bd8e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read and write SPIFFE - trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0subject\\u00A0rights - requests\\u00A0without a\\u00A0signed-in\\u00A0user.\",\"displayName\":\"Read\\u00A0all - subject\\u00A0rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0and\\u00A0write - subject\\u00A0rights requests\\u00A0without a signed in user.\",\"displayName\":\"Read\\u00A0and\\u00A0write\\u00A0all - subject\\u00A0rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to modify Viva Engage storylines, read all storylines properties, + update storyline properties, and delete storyline properties without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage storylines\",\"id\":\"6eff534b-699e-44d9-af61-a4182f0ec37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Storyline.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read subject rights requests without a signed-in user.\",\"displayName\":\"Read + all subject rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write subject rights requests without a signed in user.\",\"displayName\":\"Read + and write all subject rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read Azure AD synchronization information, without a signed-in user.\",\"displayName\":\"Read all Azure AD synchronization data.\",\"id\":\"5ba43d2f-fa88-4db2-bd1c-a67c5f0fb1ce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Synchronization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to configure the Azure AD synchronization service, without @@ -10850,7 +5773,7 @@ interactions: the app to create, read, update and delete all users\u2019 tasks and task lists in your organization, without a signed-in user\",\"displayName\":\"Read and write all users\u2019 tasks and tasklists\",\"id\":\"44e666d1-d276-445b-a5fc-8815eeb81d55\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Tasks.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create teams without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create teams without a signed-in user. \",\"displayName\":\"Create teams\",\"id\":\"23fc2474-f741-46ce-8465-674744c5c361\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Get a list of all teams, without a signed-in user.\",\"displayName\":\"Get a list of all teams\",\"id\":\"2280dda6-0bfd-44ee-a2f4-cb867cfc4c1e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read @@ -11021,7 +5944,7 @@ interactions: user.\",\"displayName\":\"Read Teams devices\",\"id\":\"0591bafd-7c1c-4c30-a2a5-2b9aacb1dfe8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the app to read and write the management data for Teams devices, without a signed-in user.\",\"displayName\":\"Read and write Teams devices\",\"id\":\"79c02f5b-bd4f-4713-bc2c-a8a4a66e127b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read\\u00A0tags in Teams\\u00A0without a signed-in user.\",\"displayName\":\"Read + the app to read tags in Teams without a signed-in user.\",\"displayName\":\"Read tags in Teams\",\"id\":\"b74fd6c4-4bde-488e-9695-eeb100e4907f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write tags in Teams without a signed-in user.\",\"displayName\":\"Read and write tags in Teams\",\"id\":\"a3371ca5-911d-46d6-901c-42c8c7a937d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -11038,8 +5961,8 @@ interactions: the app to read all the indicators for your organization, without a signed-in user.\",\"displayName\":\"Read all threat indicators\",\"id\":\"197ee4e9-b993-4066-898f-d6aecc55125b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), without a signed-in user. \\u00A0It cannot update - any threat indicators it does not own.\",\"displayName\":\"Manage threat indicators + (read, update and delete), without a signed-in user. It cannot update any + threat indicators it does not own.\",\"displayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"21792b6c-c986-4ffc-85de-df9da54b52fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read threat intelligence information, such as indicators, observations, and and articles, without a signed in user.\",\"displayName\":\"Read all Threat @@ -11071,6 +5994,9 @@ interactions: the app to read and write secondary mail addresses for all users, without a signed-in user.\",\"displayName\":\"Read and write all secondary mail addresses for users\",\"id\":\"280d0935-0796-47d1-8d26-273470a3f17a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-Mail.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all users without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + users\",\"id\":\"a94a502d-0281-4d15-8cd2-682ac9362c4c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write password profiles and reset passwords for all users, without a signed-in user.\",\"displayName\":\"Read and write all password profiles and reset user passwords\",\"id\":\"cc117bb9-00cf-4eb8-b580-ea2a878fe8f7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-PasswordProfile.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -11115,6 +6041,41 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods\",\"displayName\":\"Read and write all users' authentication methods \",\"id\":\"50483e42-d915-4231-9639-7fdb7fd190e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read email methods of all users in your organization, without a + signed-in user. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' email methods\",\"id\":\"a1e58be0-1095-422b-b067-73434bd7d40f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write email methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' email methods\",\"id\":\"e8ecb853-1435-4a49-95ba-ec5b31b11672\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read external authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' external authentication methods\",\"id\":\"d2c4289f-9f95-40da-ad43-eeb1506f0db7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write external authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' external + authentication methods\",\"id\":\"c7a22c2e-5b01-4129-8159-6c8be2c78f16\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' HardwareOATH authentication methods\",\"id\":\"7b544555-7811-49ff-8223-a56be870e33a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write HardwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + HardwareOATH authentication methods\",\"id\":\"7e9ebcc1-90aa-4471-8051-e68d6b4e9c89\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Microsoft authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' Microsoft authentication methods\",\"id\":\"a9c5f16e-e5ca-4e33-89ad-903fcfc01c23\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Microsoft Authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Microsoft Authentication methods\",\"id\":\"c833c349-a1ab-4b6d-94a2-fa9a8674420c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read passkey authentication methods of all users in your organization, without a signed-in user. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read @@ -11122,8 +6083,70 @@ interactions: the application to read and write passkey authentication methods of all users in your organization, without a signed-in user. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the - authentication methods\",\"displayName\":\"Read and write all users' passkey - authentication methods\",\"id\":\"0400e371-7db1-4338-a269-96069eb65227\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + authentication methods\",\"displayName\":\"Read and write all users' passkey + authentication methods\",\"id\":\"0400e371-7db1-4338-a269-96069eb65227\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read password authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' password authentication methods\",\"id\":\"8d2c17ff-b93d-40d5-9def-d843680509cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write password authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' password + authentication methods\",\"id\":\"f6d38dfd-ec08-4995-8f07-23e929df0936\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read phone authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' phone authentication methods\",\"id\":\"f529a223-ea70-43ec-b268-5012de2fbaa2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write phone methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' phone methods\",\"id\":\"6e85d483-7092-4375-babe-0a94a8213a58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read platform credentials methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' platform credentials methods\",\"id\":\"07c0b1e4-15bd-442f-834b-30f8291388d1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write platform credentials methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' platform + credentials methods\",\"id\":\"1a87acf4-a9ca-4576-a974-452ea265d5f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read QR authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' QR methods\",\"id\":\"9a45bc50-cddd-4ebe-bd9c-4f2eacf646ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write QR authentication methods of all users in + your organization, without a signed-in user. This does not allow the app to + see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' QR methods\",\"id\":\"4869299f-18c3-40c8-98f2-222657e67db1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' SoftwareOATH methods\",\"id\":\"a6b423df-a0c8-411d-a809-a4a5985d2939\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write SoftwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + SoftwareOATH methods\",\"id\":\"787442d4-3c6e-4e99-aa95-8ccca20a48ff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read all users' Temporary Access + Pass methods\",\"id\":\"bf82209c-b22b-4747-ac88-a68be99032cf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Temporary Access Pass authentication methods + of all users in your organization, without a signed-in user. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Temporary Access Pass methods\",\"id\":\"627169a8-8c15-451c-861a-5b80e383de5c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization, without a signed-in user. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"displayName\":\"Read all users' Windows Hello methods\",\"id\":\"9b8dd4c7-8cca-4ef5-a34a-9c2c75fcc934\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Windows Hello authentication methods of + all users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Windows Hello authentication methods\",\"id\":\"f14eee8a-713e-45aa-8223-2ab74632db1a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send, read, update and delete user\u2019s notifications, without a signed-in user.\",\"displayName\":\"Deliver and manage all user's notifications\",\"id\":\"4e774092-a092-48d1-90bd-baad67c7eb47\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserNotification.ReadWrite.CreatedByApp\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all users' shift schedule preferences without a signed-in @@ -11131,7 +6154,9 @@ interactions: the app to manage all users' shift schedule preferences without a signed-in user.\",\"displayName\":\"Read and write all user shift preferences\",\"id\":\"d1eec298-80f3-49b0-9efb-d90e224798ac\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserShiftPreferences.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all user teamwork settings without a signed-in user.\",\"displayName\":\"Read - all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"This + role can read Verified Id profiles in a tenant.\",\"displayName\":\"Read Verified + Id profiles\",\"id\":\"e227c591-dd64-4a8a-a033-816167f7c938\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read virtual appointments for all users, without a signed-in user. The app must also be authorized to access an individual user\u2019s data by the online meetings application access policy.\",\"displayName\":\"Read @@ -11154,6 +6179,8 @@ interactions: the app to read and write all Windows update deployment settings for the organization without a signed-in user.\",\"displayName\":\"Read and write all Windows update deployment settings\",\"id\":\"7dd1be58-6e76-4401-bf8d-31d1e8180d5b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WindowsUpdates.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read workforce integrations without a signed-in user.\",\"displayName\":\"Read + workforce integrations\",\"id\":\"f10b94b9-37d1-4c88-8b7e-bf75a1152d39\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage workforce integrations to synchronize data from Microsoft Teams Shifts, without a signed-in user.\",\"displayName\":\"Read and write workforce integrations\",\"id\":\"202bf709-e8e6-478e-bcfd-5d63c50b68e3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"info\":{\"logoUrl\":null,\"marketingUrl\":null,\"privacyStatementUrl\":null,\"supportUrl\":null,\"termsOfServiceUrl\":null},\"keyCredentials\":[],\"oauth2PermissionScopes\":[{\"adminConsentDescription\":\"Allows @@ -11191,6 +6218,158 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership on your behalf.\",\"userConsentDisplayName\":\"Read and write administrative units\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent cards and their skills in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"id\":\"73ea6732-992c-4292-98f7-9feff18d3ade\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent cards and their skills on your behalf.\",\"userConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"value\":\"AgentCard.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent cards in Agent Registry\",\"id\":\"b0f726a8-0fa2-4ce2-937b-fd17a446261f\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + on your behalf.\",\"userConsentDisplayName\":\"Read and write agent cards + in Agent Registry\",\"value\":\"AgentCard.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent card manifests in your organization's Agent Registry + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read agent + card manifests in Agent Registry\",\"id\":\"ada96a26-9579-4c29-a578-c3482a765716\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write agent card manifests in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"id\":\"80151b1a-1c31-4846-ae0d-c79939ee13d1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read collections and their membership in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + collections in Agent Registry\",\"id\":\"fa50be38-fdff-469c-96dc-ef5fce3c64bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read collections and their membership on your behalf.\",\"userConsentDisplayName\":\"Read + collections in Agent Registry\",\"value\":\"AgentCollection.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read global collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + global collection in Agent Registry\",\"id\":\"b14924c8-87f1-438a-81f2-dc370ba2f45d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read global collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + global collection in Agent Registry\",\"value\":\"AgentCollection.Read.Global\"},{\"adminConsentDescription\":\"Allows + the app to read quarantined collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"id\":\"43acfda3-daf3-4aa4-955d-b051d0024e82\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read quarantined collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"value\":\"AgentCollection.Read.Quarantined\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write collections in Agent Registry\",\"id\":\"6d8a7002-a05e-4b95-a768-0e6f0badc6c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write collections + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update global collection and manage its membership in + your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write global collection in Agent Registry\",\"id\":\"c001dd65-8a6b-4349-ab0c-4e8a410d28d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update global collection and manage its membership on + your behalf.\",\"userConsentDisplayName\":\"Read and write global collection + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Global\"},{\"adminConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write quarantined collection in Agent Registry\",\"id\":\"ae331cc9-9f51-484b-a90b-124f2e4a6398\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write quarantined + collection in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Quarantined\"},{\"adminConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"adminConsentDisplayName\":\"Delete + and restore agent identities\",\"id\":\"c8ee41e5-35e7-4fe9-8ecb-93493adcac5b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"userConsentDisplayName\":\"Delete + and restore agent identities\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"adminConsentDisplayName\":\"Enable + or disable agent identities\",\"id\":\"a501206a-e364-4a3f-be6e-765806d0e323\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"userConsentDisplayName\":\"Enable + or disable agent identities\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identities.\",\"adminConsentDisplayName\":\"Read + all agent identities\",\"id\":\"5e850691-d86a-4b24-bfa6-8a52fb37a0c1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identities.\",\"userConsentDisplayName\":\"Read + all agent identities\",\"value\":\"AgentIdentity.Read.All\"},{\"adminConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Read and write all agent identities\",\"id\":\"4a4facd5-0ee1-49b7-a5b2-fdcc2491685e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"userConsentDisplayName\":\"Read and write all agent identities\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"id\":\"75b5feb2-bfe7-423f-907d-cc505186f246\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprints.\",\"id\":\"8fc15edd-ba24-494e-9bf6-d38e1b7ba8fd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f12ba1f6-afb7-4685-9a30-21e8c3f551d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"adminConsentDisplayName\":\"Read + all agent identity blueprints\",\"id\":\"26512dc8-1364-4e9f-867c-6d8b22a9e162\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"userConsentDisplayName\":\"Read + all agent identity blueprints\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"id\":\"4fd490fc-1467-48eb-8a4c-421597ab0402\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"id\":\"6f677aa9-25af-49a5-8a1d-628dc7f0d009\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint branding\",\"id\":\"60960e31-67cb-4d25-9d36-4922109923a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint branding\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"00dcd896-6b23-42ce-b5de-c58493c05e22\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"2c70023e-a482-4af2-9ff1-51ded53e6bad\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"adminConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"id\":\"e7475e0a-9f02-43e2-a250-5c2ea74ccd0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"userConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"id\":\"88c856a2-de61-4632-b2d4-ac503cbc8dd2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"id\":\"bf2cad6a-9082-438a-9a63-95fa2687af65\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"ad57fb88-4658-4fd6-ab7d-e43184b08e4e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"52a417d9-0b3c-4466-9a3b-66960de73d74\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"adminConsentDescription\":\"Allows + the app to read agent instances and their related collections in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"id\":\"4c3c738a-2df0-4877-bf4a-f796950ff34c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent instances and their related collections on your behalf.\",\"userConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"value\":\"AgentInstance.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"id\":\"fc79e324-da24-497a-b5ec-e7de08320375\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read terms of use agreements on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all terms of use agreements\",\"id\":\"af2819c9-df71-4dd3-ade7-4d7c9dc653b7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read terms of use agreements on your behalf.\",\"userConsentDisplayName\":\"Read @@ -11270,6 +6449,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read applications\",\"id\":\"c79f8feb-a9db-4090-85f9-90d820caa0eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read applications and service principals on your behalf.\",\"userConsentDisplayName\":\"Read applications\",\"value\":\"Application.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update all apps in your organization, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read and update all apps\",\"id\":\"0586a906-4d89-4de8-b3c8-1aacdcc0c679\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update all apps in your organization, on your behalf.\",\"userConsentDisplayName\":\"Read + and update all apps\",\"value\":\"Application.ReadUpdate.All\"},{\"adminConsentDescription\":\"Allows the app to create, read, update and delete applications and service principals on behalf of the signed-in user. Does not allow management of consent grants.\",\"adminConsentDisplayName\":\"Read and write all applications\",\"id\":\"bdfbf15f-ee85-4955-8675-146e8e5296b5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -11308,7 +6491,15 @@ interactions: create, and update attack simulation data of an organization\",\"id\":\"27608d7c-2c66-4cad-a657-951d575f5a60\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, and update attack simulation and training data for an organization on your behalf.\",\"userConsentDisplayName\":\"Read, create, - and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Read + activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"id\":\"16786f81-40d2-4116-bb26-d1a753bf0b20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"value\":\"AuditActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"a78fd341-0672-4792-a8ae-a5925b2546eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"value\":\"AuditActivity.Write\"},{\"adminConsentDescription\":\"Allows the app to read and query your audit log activities, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read audit log data\",\"id\":\"e4c9e354-4dc5-45b8-9e7c-e1393b0b1a20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and query your audit log activities, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -11507,8 +6698,8 @@ interactions: delegate and shared calendars.\",\"adminConsentDisplayName\":\"Read user and shared calendars\",\"id\":\"2b9c4092-424d-4249-948d-b43879977640\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read events in all calendars that you can access, including delegate - and shared calendars.\\u00A0\",\"userConsentDisplayName\":\"Read calendars\\u00A0you - can access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows + and shared calendars. \",\"userConsentDisplayName\":\"Read calendars you can + access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows the app to read events in user calendars, except for properties such as body, attachments, and extensions.\",\"adminConsentDisplayName\":\"Read basic details of user calendars\",\"id\":\"662d75ba-a364-42ad-adee-f5f880ea4878\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -11527,6 +6718,10 @@ interactions: organization you have permissions to access. This includes delegate and shared calendars.\",\"userConsentDisplayName\":\"Read and write to your and shared calendars\",\"value\":\"Calendars.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read all AI Insights for calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all AI Insights for calls. \",\"id\":\"e24bdaf9-83f8-468b-a144-c681ccb6caf4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read all AI Insights for calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all AI Insights for calls.\",\"value\":\"CallAiInsights.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read delegation settings of you\",\"adminConsentDisplayName\":\"Read delegation settings\",\"id\":\"305b375b-00fe-48bf-81bc-e8d78954c1b6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows you to read your delegation settings\",\"userConsentDisplayName\":\"Read your @@ -11539,6 +6734,14 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read call event data\",\"id\":\"43431c03-960e-400f-87c6-8f910321dca3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read call event information for an organization on your behalf.\",\"userConsentDisplayName\":\"Read call event data\",\"value\":\"CallEvents.Read\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all recordings of calls. \",\"id\":\"63d31bd6-bcf5-40ca-8283-ba4130a66405\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all recordings of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all recordings of calls.\",\"value\":\"CallRecordings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all transcripts of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all transcripts of calls. \",\"id\":\"fbace248-5d8e-441c-85ca-cc19221a69a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all transcripts of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all transcripts of calls.\",\"value\":\"CallTranscripts.Read.All\"},{\"adminConsentDescription\":\"Allows to read all Change Management items.\",\"adminConsentDisplayName\":\"Read Change Management items\",\"id\":\"4628dff5-c33e-4fde-b17a-b64e7acb1bed\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows to read all Change Management items.\",\"userConsentDisplayName\":\"Read Change @@ -11595,7 +6798,7 @@ interactions: and write the names, descriptions, and settings of channels\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to create chats on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create chats\",\"id\":\"38826093-1258-4dea-98f0-00003be2b8d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create chats on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create chats on your behalf. \",\"userConsentDisplayName\":\"Create chats\",\"value\":\"Chat.Create\"},{\"adminConsentDescription\":\"Allows the app to delete and recover deleted chats, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Delete and recover deleted chats\",\"id\":\"bb64e6fc-6b6d-4752-aea0-dd922dbba588\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -11693,6 +6896,12 @@ interactions: the app to read app consent requests for your approval, and deny or approve those request on your behalf.\",\"userConsentDisplayName\":\"Read and write consent requests\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of contacts a user + has permissions to, including their own and shared contacts.\",\"adminConsentDisplayName\":\"Read + and update the on-premises sync behavior of contacts\",\"id\":\"1e4c6c41-0803-4f52-85ef-0a5d63ad8670\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of contacts you have permissions + to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of your own and shared contacts\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read user contacts. \",\"adminConsentDisplayName\":\"Read user contacts \",\"id\":\"ff74d97f-43af-4b68-9f2a-b77ee6968c5d\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read contacts in your contact folders.\",\"userConsentDisplayName\":\"Read @@ -11712,6 +6921,38 @@ interactions: the app to read, update, create, and delete contacts you have permissions to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read and write to your and shared contacts\",\"value\":\"Contacts.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"adminConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"id\":\"7e2467d1-f874-46bb-828e-24cb06b29d3f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"userConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"value\":\"Content.Process.All\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"adminConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"id\":\"1d787a13-f750-4ad6-875a-fcbd2725596b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"userConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"value\":\"Content.Process.User\"},{\"adminConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"62c55b2f-a2b1-4312-8385-be57afd901b4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"value\":\"ContentActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"id\":\"948caae6-152a-48cd-a746-4844af30e8e9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"value\":\"ContentActivity.Write\"},{\"adminConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Delete Microsoft 365 Copilot conversations\",\"id\":\"ed510a02-ac32-45f9-93e6-04864f7f7e47\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on your behalf.\",\"userConsentDisplayName\":\"Delete + Microsoft 365 Copilot conversations\",\"value\":\"CopilotConversation.Delete\"},{\"adminConsentDescription\":\"Allows + the user to read the packages information\",\"adminConsentDisplayName\":\"Read + all packages information\",\"id\":\"a2dcfcb9-cbe8-4d42-812d-952e55cf7f3f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read packages information.\",\"userConsentDisplayName\":\"Read + all packages information\",\"value\":\"CopilotPackages.Read.All\"},{\"adminConsentDescription\":\"Allows + the user to read and update the packages information\",\"adminConsentDisplayName\":\"Read + and update all packages information\",\"id\":\"e9c5fd18-ac15-43dd-9f5c-6f9611dd5604\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update packages information.\",\"userConsentDisplayName\":\"Read + and update all packages information\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide copilot limited mode setting on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organization-wide copilot limited mode setting\",\"id\":\"aeb2982d-632d-4155-b533-18756ab6fdd8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -11730,46 +6971,45 @@ interactions: within the Azure AD ecosystem on your behalf.\",\"userConsentDisplayName\":\"Read cross-tenant basic information\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export external user data (e.g. customer content or system-generated - logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + the current tenant on behalf of the signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"id\":\"cb1ba48f-d22b-4325-a07f-74135a62ee41\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"value\":\"CrossTenantUserProfileSharing.Read\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export their data\",\"id\":\"759dcd16-3c90-463c-937e-abf89f991c18\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export external user data (e.g. customer content or system-generated logs), + with the current tenant on your behalf. It also permits the application to + export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export data\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export and remove external user data (e.g. customer content - or system-generated logs), associated with the current tenant on behalf of - the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant - user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the current tenant on behalf of the signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated + logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + shared cross-tenant user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export or delete their data\",\"id\":\"64dfa325-cbf8-48e3-938d-51224a0cac01\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's custom authentication extensions on behalf @@ -12026,6 +7266,16 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and update Azure AD recommendations\",\"id\":\"f37235e8-90a0-4189-93e2-e55b53867ccd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update Azure AD recommendations, on your behalf.\",\"userConsentDisplayName\":\"Read and update Azure AD recommendations\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"adminConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"33203a2a-a761-40f0-8a7c-a7e74a9f8ac6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"userConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"adminConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"id\":\"857bd3ea-490e-4284-88a7-a7de1893b6ee\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"userConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all domain properties on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read domains.\",\"id\":\"2f9ee017-59c1-4f1d-9472-bd5529a7b311\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all domain properties on your behalf.\",\"userConsentDisplayName\":\"Read @@ -12071,7 +7321,7 @@ interactions: your assignments without grades\",\"value\":\"EduAssignments.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments and their grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments and their grades\",\"id\":\"2f233e90-164b-4501-8bce-31af2559a2d3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view and modify your assignments on your behalf including \\u00A0grades.\",\"userConsentDisplayName\":\"View + the app to view and modify your assignments on your behalf including grades.\",\"userConsentDisplayName\":\"View and modify your assignments and grades\",\"value\":\"EduAssignments.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments without grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments without grades\",\"id\":\"2ef770a1-622a-47c4-93ee-28d6adbed3a0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -12095,13 +7345,13 @@ interactions: your school, class and user information\",\"value\":\"EduRoster.Read\"},{\"adminConsentDescription\":\"Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization's roster and a limited subset of properties - about users to be read on behalf of the user.\\u00A0Includes name, status, - education role, email address and photo.\",\"adminConsentDisplayName\":\"Read - a limited subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view minimal \\u00A0information about both schools and classes - in your organization and education-related information about you and other - users on your behalf.\",\"userConsentDisplayName\":\"View a limited subset - of your school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows + about users to be read on behalf of the user. Includes name, status, education + role, email address and photo.\",\"adminConsentDisplayName\":\"Read a limited + subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to view minimal information about both schools and classes in your + organization and education-related information about you and other users on + your behalf.\",\"userConsentDisplayName\":\"View a limited subset of your + school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write the structure of schools and classes in an organization's roster and education-specific information about users to be read and written on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' @@ -12113,6 +7363,23 @@ interactions: users' email address\",\"id\":\"64a6cdd6-aab1-4aaf-94b8-3cc8405e90d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your primary email address\",\"userConsentDisplayName\":\"View your email address\",\"value\":\"email\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage conversations, and to read their properties on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Viva + Engage conversations\",\"id\":\"c55541d9-2cdd-4fad-8ead-0c08fae5b0c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage conversations\",\"value\":\"EngagementConversation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage conversations\",\"id\":\"ebbfd079-1634-4640-8618-68b19ebbed1d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + communities\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage Teams QA conversations, and to read their properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + Viva Engage Teams QA conversations\",\"id\":\"58c5819e-29bd-4400-ad52-82cd82a63fbd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage Teams QA + conversations\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"adminConsentDescription\":\"Allows the app to list a user's Viva Engage roles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's Viva Engage roles \",\"id\":\"9f1da0fc-345c-4dfb-bab5-5215a073a417\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to list your Viva Engage roles, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -12165,6 +7432,10 @@ interactions: user via Exchange Web Services\",\"id\":\"9769c687-087d-48ac-9cb3-c37dde652038\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app full access to your mailboxes on your behalf.\",\"userConsentDisplayName\":\"Access your mailboxes\",\"value\":\"EWS.AccessAsUser.All\"},{\"adminConsentDescription\":\"Allows + the app to search the email message trace on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Search + the email message trace\",\"id\":\"b2e7d27e-14e7-41ad-bb15-a88ceb9c3e90\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to search the email message trace on your behalf.\",\"userConsentDisplayName\":\"Search + the email message trace\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all external connections on behalf of a signed-in user. The signed-in user must be an administrator.\",\"adminConsentDisplayName\":\"Read all external connections\",\"id\":\"a38267a5-26b6-4d76-9493-935b7599116b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -12275,6 +7546,26 @@ interactions: file storage containers and the permissions granted will be configured in Microsoft 365 by the developer of each container type.\",\"userConsentDisplayName\":\"Access selected file storage containers\",\"value\":\"FileStorageContainer.Selected\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container types on behalf of the signed + in user. The user must be a SharePoint Embedded Admin or Global Admin.\",\"adminConsentDisplayName\":\"Manage + file storage container types on behalf of the signed in user\",\"id\":\"8e6ec84c-5fcd-4cc7-ac8a-2296efc0ed9b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container types on your behalf. You + must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container types on your behalf\",\"value\":\"FileStorageContainerType.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container type registrations on behalf + of the signed in user. The user must be a SharePoint Embedded Admin or Global + Admin.\",\"adminConsentDisplayName\":\"Manage file storage container type + registrations on behalf of the signed in user\",\"id\":\"c319a7df-930e-44c0-a43b-7e5e9c7f4f24\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container type registrations on your + behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container type registrations on your behalf\",\"value\":\"FileStorageContainerTypeReg.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on behalf of the signed in user. The user must be a SharePoint Embedded Admin + or Global Admin.\",\"adminConsentDisplayName\":\"Access selected file storage + container type registrations.\",\"id\":\"d1e4f63a-1569-475c-b9b2-bdc140405e38\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on your behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Access + selected file storage container type registrations.\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"adminConsentDescription\":\"Allows the app to read and write financials data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write financials data\",\"id\":\"f534bf13-55d4-45a9-8f3c-c92fe64d6131\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write financials data on your behalf.\",\"userConsentDisplayName\":\"Read @@ -12296,6 +7587,11 @@ interactions: access to.\",\"adminConsentDisplayName\":\"Read and write group conversations\",\"id\":\"302bcbb5-855a-4e49-ae20-94a331b0281e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write group conversations that the signed-in user has access to.\",\"userConsentDisplayName\":\"Read and write group conversations\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of groups on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of groups\",\"id\":\"37e00479-5776-4659-aecf-4841ec5d590a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of groups on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of groups\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access.\",\"adminConsentDisplayName\":\"Read @@ -12324,6 +7620,20 @@ interactions: the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.\",\"userConsentDisplayName\":\"Read and write group memberships\",\"value\":\"GroupMember.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + group settings that user can access\",\"id\":\"2eb2bc92-94ef-4c6b-b4ab-2a09bc975e0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on your behalf.\",\"userConsentDisplayName\":\"Read all group settings that + user can access\",\"value\":\"GroupSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all group settings that user can access\",\"id\":\"c1691a6d-99e2-4cfa-b4b5-9e4d67dc0f36\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all group settings + that user can access\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all scenario health monitoring alerts\",\"adminConsentDisplayName\":\"Read all scenario health monitoring alerts\",\"id\":\"74b4ff32-4917-4536-a66d-38a4861e6220\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all scenario health monitoring alerts, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -12361,13 +7671,24 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risk event information\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include confirming risk event detections.\\u00A0\",\"adminConsentDisplayName\":\"Read - and write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + confirming risk event detections. \",\"adminConsentDisplayName\":\"Read and + write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on your behalf.\\u00A0Update operations include confirming - risk event detections.\\u00A0\",\"userConsentDisplayName\":\"Read and write - risk event information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include confirming risk + event detections. \",\"userConsentDisplayName\":\"Read and write risk event + information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read risky agents information\",\"id\":\"3215c57f-3faa-4295-95c2-6f14a5bc6124\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read risky agents information\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on behalf of the signed-in user. Update operations include + dismissing risky agents.\",\"adminConsentDisplayName\":\"Read and write risky + agents information\",\"id\":\"d343bdeb-db6a-4e06-97da-9dafc2d61c60\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on your behalf. Update operations include dismissing + risky agents.\",\"userConsentDisplayName\":\"Read and write risky agents information\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all identity risky service principal information for your organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity risky service principal information\",\"id\":\"ea5c4ab0-5a73-4f35-8272-5d5337884e5d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -12389,13 +7710,12 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risky user information\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write - risky user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write risky + user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on your behalf.\\u00A0Update operations include dismissing - risky users.\",\"userConsentDisplayName\":\"Read and write identity risky - user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include dismissing risky + users.\",\"userConsentDisplayName\":\"Read and write identity risky user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's user flows, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity user flows\",\"id\":\"2903d63d-4611-4d43-99ce-a33f3f52e343\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's user flows, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -12502,20 +7822,21 @@ interactions: the app to read learning content in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning content\",\"id\":\"ea4c1fd9-6a9f-4432-8e5d-86e06cc0da77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read learning content in the organization's directory, on your - behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on your behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Manage learning content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on your + behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read data for the learning provider in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning - provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0data\\u00A0for\\u00A0the - learning\\u00A0provider\\u00A0in\\u00A0the organization's\\u00A0directory, + provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read data for the learning provider in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Read learning provider\",\"value\":\"LearningProvider.Read\"},{\"adminConsentDescription\":\"Allows the app to create, update, read, and delete data for the learning provider - in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0create, - update, read, and delete\\u00A0data\\u00A0for\\u00A0the learning\\u00A0provider\\u00A0in\\u00A0the - organization's\\u00A0directory, on your behalf.\",\"userConsentDisplayName\":\"Manage + in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage + learning provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, update, read, and delete data for the learning provider + in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Manage learning provider\",\"value\":\"LearningProvider.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read data for the learner's self-initiated courses in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -12592,6 +7913,24 @@ interactions: \ The specific lists and the permissions granted will be configured in SharePoint Online.\",\"userConsentDisplayName\":\"Access selected Lists, on behalf of the signed-in user\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in user mailboxes, on behalf of the signed-in user. Does not include + permission to send mail.\",\"adminConsentDisplayName\":\"Read and write the + user's mail, including modifying existing non-draft mails\",\"id\":\"f3af82f6-18e0-4a41-8dc8-a03c11854a8d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in your mailboxes, on your behalf. Does not include permission to send + mail.\",\"userConsentDisplayName\":\"Read and write your mail, including modifying + existing non-draft mails\",\"value\":\"Mail-Advanced.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails a user has permission to access, on behalf of the signed-in + user. This includes their own and shared mail. Does not include permission + to send mail.\",\"adminConsentDisplayName\":\"Read and write all mail the + user can access, including modifying existing non-draft mails\",\"id\":\"bebf0bb6-2ff3-4295-a17d-f3561da294fb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails you have permission to access, on your behalf. This includes + your own mail and shared mail. Does not include permission to send mail.\",\"userConsentDisplayName\":\"Read + and write all mail you can access, including modifying existing non-draft + mails\",\"value\":\"Mail-Advanced.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to read the signed-in user's mailbox.\",\"adminConsentDisplayName\":\"Read user mail \",\"id\":\"570282fd-fa5c-430d-a7fd-fc8dc98a9dca\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read email in your mailbox.\",\"userConsentDisplayName\":\"Read @@ -12625,8 +7964,7 @@ interactions: mail\",\"id\":\"5df07973-7d5d-46ed-9847-1271055cbd51\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, update, create, and delete mail you have permission to access, including your own and shared mail. Does not allow the app to send mail on - your behalf.\",\"userConsentDisplayName\":\"Read and write mail\\u00A0you - can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + your behalf.\",\"userConsentDisplayName\":\"Read and write mail you can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to send mail as users in the organization.\",\"adminConsentDisplayName\":\"Send mail as a user \",\"id\":\"e383f46e-2787-4529-855e-0e479a3ffac0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you.\",\"userConsentDisplayName\":\"Send mail as you @@ -12635,6 +7973,15 @@ interactions: mail on behalf of others\",\"id\":\"a367ab51-6b49-43bf-a716-a1fb06d2a174\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you or on-behalf of someone else.\",\"userConsentDisplayName\":\"Send mail on behalf of others or yourself\",\"value\":\"Mail.Send.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read user's UserConfiguration objects, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Read user's UserConfiguration objects\",\"id\":\"dce2e6fc-0f4b-40da-94e2-14b4477f3d92\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + your UserConfiguration objects\",\"value\":\"MailboxConfigItem.Read\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete user's UserConfiguration objects, + on behalf of the the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write user's UserConfiguration objects\",\"id\":\"7d461784-7715-4b09-9f90-91a6d8722652\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + and write your UserConfiguration objects\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read the user's mailbox folders, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's mailbox folders\",\"id\":\"52dc2051-4958-4636-8f2a-281d39c6981c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read @@ -12643,6 +7990,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write a user's mailbox folders\",\"id\":\"077fde41-7e0b-4c5b-bcd1-e9d743a30c80\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read and write your mailbox folders\",\"value\":\"MailboxFolder.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to export the user's mailbox items, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Export a user's mailbox items\",\"id\":\"58d3e7fa-3ce9-4a0c-9baa-0971f64709d9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export your mailbox items, on your behalf\",\"userConsentDisplayName\":\"Export + your mailbox items\",\"value\":\"MailboxItem.Export\"},{\"adminConsentDescription\":\"Allows the app to backup, restore, and modify mailbox items on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Allows the app to perform backup and restore of mailbox items\",\"id\":\"df96e8a0-f4e1-4ecf-8d83-a429f822cbd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -12801,8 +8152,8 @@ interactions: user's online meeting artifacts\",\"value\":\"OnlineMeetingArtifact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all recordings of online meetings, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all recordings of online meetings.\",\"id\":\"190c2bb6-1fdd-4fec-9aa2-7d571b5e1fe3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all recordings of online meetings, on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read - all recordings of online meetings.\\u00A0\",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of online meetings, on your behalf. \",\"userConsentDisplayName\":\"Read + all recordings of online meetings. \",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read online meeting details on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read user's online meetings\",\"id\":\"9be106e1-f4e3-4df5-bdff-e4bc531cbe43\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read online meeting details on your behalf.\",\"userConsentDisplayName\":\"Read @@ -12842,19 +8193,18 @@ interactions: app to read your basic profile information.\",\"userConsentDisplayName\":\"Sign in as you\",\"value\":\"openid\"},{\"adminConsentDescription\":\"Allows the app to read the organization and related resources, on behalf of the signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read the organization and related resources, on your behalf.\\u00A0Related + user. Related resources include things like subscribed skus and tenant branding + information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.\",\"userConsentDisplayName\":\"Read organization information\",\"value\":\"Organization.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and write the organization and related resources, on behalf - of the signed-in user.\\u00A0Related resources include things like subscribed - skus and tenant branding information.\",\"adminConsentDisplayName\":\"Read - and write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + of the signed-in user. Related resources include things like subscribed skus + and tenant branding information.\",\"adminConsentDisplayName\":\"Read and + write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the organization and related resources, on your - behalf.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"userConsentDisplayName\":\"Read and write organization - information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf. Related resources include things like subscribed skus and tenant branding + information.\",\"userConsentDisplayName\":\"Read and write organization information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read the organizational branding information, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organizational branding information\",\"id\":\"9082f138-6f02-4f3a-9f4d-5f3c2ce5c688\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -12867,10 +8217,10 @@ interactions: behalf.\",\"userConsentDisplayName\":\"Read and write organizational branding information\",\"value\":\"OrganizationalBranding.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all organizational contacts on behalf of the signed-in user. - \\u00A0These contacts are managed by the organization and are different from - a user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational + \ These contacts are managed by the organization and are different from a + user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational contacts\",\"id\":\"08432d1b-5911-483c-86df-7980af5cdee0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all organizational contacts on your behalf.\\u00A0 These contacts + the app to read all organizational contacts on your behalf. These contacts are managed by the organization and are different from your personal contacts.\",\"userConsentDisplayName\":\"Read organizational contacts\",\"value\":\"OrgContact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide apps and services settings on behalf of @@ -13014,6 +8364,11 @@ interactions: your organization's policies\",\"id\":\"572fea84-0151-49b2-9301-11cb16974376\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's policies on your behalf.\",\"userConsentDisplayName\":\"Read your organization's policies\",\"value\":\"Policy.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read the authentication method policies, on behalf of the signed-in + user. \",\"adminConsentDisplayName\":\"Read authentication method policies\",\"id\":\"a6ff13ac-1851-4993-8ca9-a671d70de2d5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the authentication method policies for your tenant, on your + behalf.\",\"userConsentDisplayName\":\"Read your authentication method policies + \",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows the app to read your organization's conditional access policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization's conditional access policies\",\"id\":\"633e0fce-8c58-4cfb-9495-12bbd5a24f7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -13062,8 +8417,8 @@ interactions: on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication flow policies\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"adminConsentDescription\":\"Allows the app to read and write the authentication method policies, on behalf of - the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write - authentication method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the signed-in user. \",\"adminConsentDisplayName\":\"Read and write authentication + method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the authentication method policies for your tenant, on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication method policies \",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows @@ -13086,12 +8441,19 @@ interactions: request policy\",\"id\":\"4d135e65-66b8-41a8-9f8b-081452c91774\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's consent request policy on your behalf.\",\"userConsentDisplayName\":\"Read and write consent request policy\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"adminConsentDescription\":\"Allows - the app to read and write your organization's cross tenant access policies - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and - write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's cross tenant access policies on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's cross tenant access policies\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write your organization's M365 cross tenant access capabilities\",\"id\":\"9ef7463f-1d39-406f-89ea-3483a4645e1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's + M365 cross tenant access capabilities\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"adminConsentDescription\":\"Allows the app to read and write your organization's device configuration policies on behalf of the signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -13195,29 +8557,29 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write print connectors\",\"id\":\"79ef9967-7d59-4213-9c64-4b10687637d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and write print connectors on your behalf.\",\"userConsentDisplayName\":\"Read and write print connectors\",\"value\":\"PrintConnector.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to create (register) printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to create (register) printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows + the application to create (register) printers on behalf of the signed-in user. + \",\"adminConsentDisplayName\":\"Register printers \",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to create (register) printers on your behalf. \",\"userConsentDisplayName\":\"Register + printers \",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register, + printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Register, read, update, and unregister printers\",\"id\":\"93dae4bd-43a1-4a23-9a1a-92957e1d9121\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on your behalf.\\u00A0\\u00A0\",\"userConsentDisplayName\":\"Register, - read, update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows - the application to read printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + printers on your behalf. \",\"userConsentDisplayName\":\"Register, read, + update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows + the application to read printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printers\",\"id\":\"3a736c8a-018e-460a-b60c-863b2683e8bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printers on your behalf. \",\"userConsentDisplayName\":\"Read printers\",\"value\":\"Printer.Read.All\"},{\"adminConsentDescription\":\"Allows - the application to read and update printers on behalf of the signed-in user.\\u00A0Does - not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read + the application to read and update printers on behalf of the signed-in user. + Does not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read and update printers\",\"id\":\"89f66824-725f-4b8f-928e-e1c5258dc565\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printers on your behalf.\\u00A0Does not - allow creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read + the application to read and update printers on your behalf. Does not allow + creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read and update printers\",\"value\":\"Printer.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to read printer shares on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + the application to read printer shares on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printer shares\",\"id\":\"ed11134d-2f3f-440d-a2e1-411efada2502\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the application to read printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printer shares on your behalf. \",\"userConsentDisplayName\":\"Read printer shares\",\"value\":\"PrinterShare.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read basic information about printer shares on behalf of the signed-in user. Does not allow reading access control information.\",\"adminConsentDisplayName\":\"Read @@ -13225,8 +8587,8 @@ interactions: the application to read basic information about printer shares on your behalf.\",\"userConsentDisplayName\":\"Read basic information about printer shares\",\"value\":\"PrinterShare.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update printer shares on behalf of the signed-in - user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + user. \",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to read and update printer shares on your behalf. \",\"userConsentDisplayName\":\"Read and update printer shares\",\"value\":\"PrinterShare.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to create print jobs on behalf of the signed-in user and upload document content to print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Create @@ -13240,10 +8602,10 @@ interactions: the application to read the metadata and document content of print jobs that you created.\",\"userConsentDisplayName\":\"Read your print jobs\",\"value\":\"PrintJob.Read\"},{\"adminConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read - print jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read print + jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows + your behalf. \",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of user's print jobs\",\"id\":\"6a71a747-280f-4670-9ca0-a9cbf882b274\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -13251,10 +8613,10 @@ interactions: not allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of your print jobs\",\"value\":\"PrintJob.ReadBasic\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs on behalf of the signed-in - user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of print jobs\",\"id\":\"04ce8d60-72ce-4867-85cf-6d82f36922f3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read the metadata of print jobs on your behalf. Does not + allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of print jobs\",\"value\":\"PrintJob.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Read @@ -13263,11 +8625,11 @@ interactions: jobs that you created.\",\"userConsentDisplayName\":\"Read and update your print jobs\",\"value\":\"PrintJob.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + jobs on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read and write print jobs\",\"id\":\"036b9544-e8c5-46ef-900a-0646cc42b271\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read and update - print jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + jobs on your behalf. \",\"userConsentDisplayName\":\"Read and update print + jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of user's print jobs\",\"id\":\"6f2d22f2-1cb6-412c-a17c-3336817eaa82\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -13275,10 +8637,10 @@ interactions: Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of your print jobs\",\"value\":\"PrintJob.ReadWriteBasic\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs on behalf of - the signed-in user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + the signed-in user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of print jobs\",\"id\":\"3a0db2f6-0d2a-4c19-971b-49109b19ad3d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read and update the metadata of print jobs on your behalf. + Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of print jobs\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read tenant-wide print settings on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read tenant-wide print settings\",\"id\":\"490f32fd-d90f-4dd7-a601-ff6cdc1a3f6c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -13330,7 +8692,7 @@ interactions: groups, storage, compute) on behalf of the signed-in users.\",\"adminConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"id\":\"a84a9652-ffd3-496e-a991-22ba5529156a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to request and manage time-based assignment and just-in-time elevation - of user privileges to manage \\u00A0your Azure resources (like your subscriptions, + of user privileges to manage your Azure resources (like your subscriptions, resource groups, storage, compute) on your behalf.\",\"userConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"value\":\"PrivilegedAccess.ReadWrite.AzureResources\"},{\"adminConsentDescription\":\"Allows the app to read time-based assignment schedules for access to Azure AD groups, @@ -13394,6 +8756,22 @@ interactions: the app to read, update and perform action on programs and program controls that you have access to.\",\"userConsentDisplayName\":\"Manage programs that you can access\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"adminConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"id\":\"98f5a27a-539a-48bc-a597-f78e9e1e76bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"userConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"value\":\"ProtectionScopes.Compute.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"adminConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"id\":\"4fc04d16-a9fc-4c5e-8da4-79b6c33638a4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"userConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"value\":\"ProtectionScopes.Compute.User\"},{\"adminConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read provisioning log data\",\"id\":\"95aec97b-cf27-4a8d-a67d-42f60b5b38ef\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on your behalf.\",\"userConsentDisplayName\":\"Read + provisioning log data\",\"value\":\"ProvisioningLog.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -13414,12 +8792,18 @@ interactions: all Questions and Answers that the user can access.\",\"id\":\"f73fa04f-b9a5-4df9-8843-993ce928925e\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read all question and answer sets that you can access.\",\"userConsentDisplayName\":\"Read all Questions and Answers that you can access.\",\"value\":\"QnA.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Access real-time enriched + data in a meeting\",\"id\":\"db5d5bae-0c9e-444e-9390-8a5fea98c253\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on your + behalf.\",\"userConsentDisplayName\":\"Access real-time enriched data in a + meeting\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read - Records Management configuration,\\u00A0labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + Records Management configuration, labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.\",\"userConsentDisplayName\":\"Read Records - Management configuration,\\u00A0labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow + Management configuration, labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write Records Management configuration, labels, and policies\",\"id\":\"f2833d75-a4e6-40ab-86d4-6dfe73c97605\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -13530,11 +8914,11 @@ interactions: assignments.\",\"userConsentDisplayName\":\"Read role management data for all RBAC providers\",\"value\":\"RoleManagement.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - behalf of the signed-in user.\\u00A0 This includes reading Cloud PC role definitions + behalf of the signed-in user. This includes reading Cloud PC role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"id\":\"9619b88a-8a25-48a7-9571-d23be0337a79\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - your behalf.\\u00A0 This includes reading Cloud PC role definitions and role - assignments.\",\"userConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows + your behalf. This includes reading Cloud PC role definitions and role assignments.\",\"userConsentDisplayName\":\"Read + Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows the app to read the role-based access control (RBAC) settings for your company's directory, on behalf of the signed-in user. This includes reading M365 Defender role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read @@ -13700,6 +9084,16 @@ interactions: like deleting an email, on your behalf.\",\"userConsentDisplayName\":\"Read metadata, detection details, and execute remediation actions on emails in your organization\",\"value\":\"SecurityAnalyzedMessage.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all Security Copilot signed-in user's resources on behalf + of the signed-in user\",\"adminConsentDisplayName\":\"Read all Security Copilot + resources for the signed-in user\",\"id\":\"84499c31-ac2e-44d3-a0cf-a6c386d4dfe8\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Read + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write Security Copilot resources owned by the signed-in + user on their behalf.\",\"adminConsentDisplayName\":\"Read and write individually + owned Security Copilot resources of the signed-in user\",\"id\":\"206291b0-2167-47a7-a640-6cdc1df710ba\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to write Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Write + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization\u2019s security events on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization\u2019s security events\",\"id\":\"64733abd-851e-478a-bffb-e47a14b18235\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -13712,6 +9106,25 @@ interactions: the app to read your organization\u2019s security events on your behalf. Also allows you to update editable properties in security events.\",\"userConsentDisplayName\":\"Read and update your organization\u2019s security events\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all the identity security available identity accounts\",\"adminConsentDisplayName\":\"Read + identity security available identity accounts\",\"id\":\"3e9ed69a-a48e-473c-8b97-413016703a37\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all the identity security available identity accounts on your + behalf.\",\"userConsentDisplayName\":\"Read identity security available identity + accounts\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write identity security available actions on behalf of + the signed-in identity.\",\"adminConsentDisplayName\":\"Read and perform identity + security available actions\",\"id\":\"818229ce-20e4-47bd-92f4-bc94dbb37a56\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write identity security available actions on your behalf.\",\"userConsentDisplayName\":\"Read + and perform identity security available actions\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the sensors window auditing configuration of the signed in + user\",\"adminConsentDisplayName\":\"Read sensors window auditing configuration\",\"id\":\"8ff90903-1ecb-4f3a-b8b2-42120374ecd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the sensors window auditing configuration on your behalf\",\"userConsentDisplayName\":\"Read + sensors window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration of the + signed in user\",\"adminConsentDisplayName\":\"Read and write sensors window + auditing configuration\",\"id\":\"b810fdb4-8733-43bd-9b37-fddb7215c69f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration on your + behalf\",\"userConsentDisplayName\":\"Read and write window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all the identity security health issues of signed user\",\"adminConsentDisplayName\":\"Read identity security health issues\",\"id\":\"a0d0da43-a6df-4416-b63d-99c79991aae8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all the identity security health issues on your behalf.\",\"userConsentDisplayName\":\"Read @@ -13747,7 +9160,30 @@ interactions: the app to read and write security incidents, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write to incidents\",\"id\":\"128ca929-1a19-45e6-a3b8-435ec44a36ba\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write to all security incidents that you have access to.\",\"userConsentDisplayName\":\"Read - and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Evaluate sensitivity + labels\",\"id\":\"a4633e44-d355-4474-99df-8c2de6b0e39e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on your + behalf.\",\"userConsentDisplayName\":\"Evaluate sensitivity labels\",\"value\":\"SensitivityLabel.Evaluate\"},{\"adminConsentDescription\":\"Allows + the app to evaluate all sensitivity label.\",\"adminConsentDisplayName\":\"Evaluate + labels tenant scope.\",\"id\":\"a42e3c42-b31e-4919-b699-696dca5dc9e7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Evaluate + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Evaluate + labels tenant scope\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + user scope.\",\"id\":\"1aeb73ce-68d7-49b7-913a-eedc80844551\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Get labels + user scope\",\"value\":\"SensitivityLabel.Read\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + app scope.\",\"id\":\"8b377c27-ea19-4863-a948-8a8588c8f2c3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels on behalf of user.\",\"userConsentDisplayName\":\"Get labels on behalf + of user\",\"value\":\"SensitivityLabels.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to export all Sentiment Survey, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Export + all Sentiment Survey\",\"id\":\"df9fd94d-51ff-443d-8f31-ae4dc1b5b8d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export all Sentiment Survey, on your behalf.\",\"userConsentDisplayName\":\"Export + all Sentiment Survey\",\"value\":\"SentimentSurvey.Export.All\"},{\"adminConsentDescription\":\"Allows the app to read all Exchange service activity, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Exchange service activity\",\"id\":\"1fe7aa48-9373-4a47-8df3-168335e0f4c9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all Exchange service activity, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -13791,6 +9227,18 @@ interactions: and update service principal endpoints\",\"id\":\"7297d82c-9546-4aed-91df-3d4f0a9b3ff0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to update service principal endpoints\",\"userConsentDisplayName\":\"Read and update service principal endpoints\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read, + write and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"c608c170-08b5-466b-a8fe-0b4074b01613\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on your behalf.\",\"userConsentDisplayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"adminConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"00dcb678-f9af-4e73-acb1-4f1657364629\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on your behalf.\",\"userConsentDisplayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the tenant-level settings in SharePoint and OneDrive on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"2ef70e10-5bfd-4ede-a5f6-67720500b258\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -13811,6 +9259,23 @@ interactions: create, edit, and delete short notes of the signed-in user\",\"id\":\"328438b7-4c01-4c07-a840-e625a749bb89\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, edit, and delete your short notes.\",\"userConsentDisplayName\":\"Read, create, edit, and delete your short notes\",\"value\":\"ShortNotes.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read SignInIdentifiers\",\"id\":\"458e1edc-1e75-438c-8c7b-c32115c9d373\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on your behalf.\",\"userConsentDisplayName\":\"Read + all sign-in identifiers\",\"value\":\"SignInIdentifier.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all + sign-in identifiers\",\"id\":\"b4673c3c-7b5a-4012-9826-7c7e3c8db6af\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on your + behalf.\",\"userConsentDisplayName\":\"Read and write all sign-in identifiers\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"adminConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"id\":\"0e2e68e1-3f32-4e10-9281-f749e097fcbe\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"userConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"value\":\"Sites.Create.All\"},{\"adminConsentDescription\":\"Allows the application to have full control of all site collections on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Have full control of all site collections\",\"id\":\"5a54b8b3-347c-476d-8f8e-42d5c7424d29\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -13858,6 +9323,12 @@ interactions: the app to read and write your organization's SPIFFE trust domains and child resources on your behalf.\",\"userConsentDisplayName\":\"Read and write SPIFFE trust domains and child resources\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to modify the Viva Engage storyline and read all storyline properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage storylines\",\"id\":\"fd1d61cb-4e4b-4d15-a6d2-161348681d84\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage storyline items and read all storyline properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + storylines\",\"value\":\"Storyline.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read subject rights requests on behalf of the signed-in user\",\"adminConsentDisplayName\":\"Read subject rights requests\",\"id\":\"9c3af74c-fd0f-4db4-b17a-71939e2a9d77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read subject rights requests on your behalf.\",\"userConsentDisplayName\":\"Read @@ -13910,7 +9381,7 @@ interactions: and write to your and shared tasks\",\"value\":\"Tasks.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to create teams on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create teams\",\"id\":\"7825d5d6-6049-4ce7-bdf6-3b8d53f4bcd0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create teams on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create teams on your behalf. \",\"userConsentDisplayName\":\"Create teams\",\"value\":\"Team.Create\"},{\"adminConsentDescription\":\"Read the names and descriptions of teams, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read the names and descriptions of teams\",\"id\":\"485be79e-c497-4b35-9400-0e3fa7f2a5d4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Read @@ -14255,7 +9726,7 @@ interactions: the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.\",\"userConsentDisplayName\":\"Read term store data\",\"value\":\"TermStore.Read.All\"},{\"adminConsentDescription\":\"Allows - the app to read or modify data that the signed-in user has access to.\\u00A0This + the app to read or modify data that the signed-in user has access to. This includes all sets, groups and terms in the term store.\",\"adminConsentDisplayName\":\"Read and write term store data\",\"id\":\"6c37c71d-f50f-4bff-8fd3-8a41da390140\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read or modify data that you have access to. This includes all @@ -14278,13 +9749,13 @@ interactions: the app to read all the indicators for your organization, on your behalf.\",\"userConsentDisplayName\":\"Read all threat indicators\",\"value\":\"ThreatIndicators.Read.All\"},{\"adminConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on behalf of the signed-in user. \\u00A0It cannot - update any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage + (read, update and delete), on behalf of the signed-in user. It cannot update + any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"91e7d36d-022a-490f-a748-f8e011357b42\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on your behalf. \\u00A0It cannot update any threat - indicators that it is not an owner of.\",\"userConsentDisplayName\":\"Manage - threat indicators this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows + (read, update and delete), on your behalf. It cannot update any threat indicators + that it is not an owner of.\",\"userConsentDisplayName\":\"Manage threat indicators + this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows the app to read threat intelligence information, such as indicators, observations, and articles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all threat intelligence information\",\"id\":\"f266d9c0-ccb9-4fb8-a228-01ac0d8d6627\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -14363,6 +9834,11 @@ interactions: the app to read and write secondary mail addresses for all users, on your behalf.\",\"userConsentDisplayName\":\"Read and write secondary mail addresses for users\",\"value\":\"User-Mail.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of users on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of users\",\"id\":\"7ff9afdd-0cdb-439d-a61c-fea3e9339e89\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of users on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of users\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read and write password profiles and reset passwords for all users, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write password profiles and reset user passwords\",\"id\":\"56760768-b641-451f-8906-e1b8ab31bca7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -14482,6 +9958,152 @@ interactions: does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' authentication methods\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's email authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's email authentication methods\",\"id\":\"12b23cea-90c1-4873-9094-f45c5f290f86\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your email authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your email + authentication methods\",\"value\":\"UserAuthMethod-Email.Read\"},{\"adminConsentDescription\":\"Allows + the app to read email methods of all users in your organization that the signed-in + user has access to. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + all users' email methods\",\"id\":\"76caaf3a-ebdb-40a3-9299-4196e636f290\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read email methods of all users you have access to in your organization. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' email methods\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's email authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's email authentication methods\",\"id\":\"696aa421-62dc-4c99-be16-015b23444089\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your email authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your email authentication methods\",\"value\":\"UserAuthMethod-Email.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write email methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' email methods.\",\"id\":\"074f680f-c89e-45be-880e-5d0642860a1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write email methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' email methods\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's external authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's external authentication methods\",\"id\":\"d1739827-146b-4f7f-b52c-1c509253aa57\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your external authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your external + authentication methods\",\"value\":\"UserAuthMethod-External.Read\"},{\"adminConsentDescription\":\"Allows + the app to read external authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' external authentication + methods\",\"id\":\"cbca9646-4c34-4cea-8e54-9a7088018820\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read external authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' external authentication methods\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's external authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's external authentication methods\",\"id\":\"28c2e8f9-828a-4691-a090-f2f0b7fc07b3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your external authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your external authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write external authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' external methods.\",\"id\":\"9d91805d-0f53-43e3-a0f3-303ad4f3056f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write external authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' external + authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's HardwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's HardwareOATH authentication methods\",\"id\":\"ccd2eb40-8874-44e6-8f96-335908b3cfdb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your HardwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"id\":\"acd68c26-c283-4bf4-8b5c-200fc179bdd5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's HardwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's HardwareOATH authentication methods\",\"id\":\"147ca97b-6686-4849-b37e-09d9b5ad45fc\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your HardwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your HardwareOATH authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' HardwareOATH methods.\",\"id\":\"480643f2-a162-43c5-a670-dc1494fc911b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"f14a567b-3280-4124-95a0-eca86006967e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Microsoft Authenticator authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' Microsoft authentication + methods\",\"id\":\"7b627679-e2fd-4bfd-990e-989e2914d4e6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' Microsoft authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"9f7dfa0c-eb40-42be-8d45-8af4a9219c6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Microsoft Authenticator authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Microsoft Authentication methods.\",\"id\":\"1b7322b2-5cb3-4f13-928f-d7ca97c5fba9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Microsoft + Authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's passkey authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's passkey authentication methods\",\"id\":\"828fcbda-0d26-431d-8bfb-83f217224621\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your passkey authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your passkey + authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read\"},{\"adminConsentDescription\":\"Allows the app to read passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication @@ -14491,6 +10113,14 @@ interactions: to in your organization.This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's passkey authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's passkey authentication methods\",\"id\":\"b2de7db9-10f7-4800-b04c-b5b91e4891d6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your passkey authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use @@ -14501,6 +10131,250 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's password authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's password authentication methods\",\"id\":\"7f0f82c3-de19-4ddc-810d-a2206d7637fd\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your password authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your password + authentication methods\",\"value\":\"UserAuthMethod-Password.Read\"},{\"adminConsentDescription\":\"Allows + the app to read password authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' password authentication + methods\",\"id\":\"4f69a4e2-2aa0-43a7-ad6b-98b4cda1f23f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read password authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' password authentication methods\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's password authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's password authentication methods\",\"id\":\"60cce20d-d41e-4594-b391-84bbf8cc31f3\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your password authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your password authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write password authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' password methods.\",\"id\":\"7f5b683d-df96-4690-a88d-6e336ed6dc7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write password authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' password + authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's phone authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's phone authentication methods\",\"id\":\"43dab3b9-e8b4-424d-8e13-6a2ad2a625fa\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your phone authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your phone + authentication methods\",\"value\":\"UserAuthMethod-Phone.Read\"},{\"adminConsentDescription\":\"Allows + the app to read phone authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' phone authentication + methods\",\"id\":\"20cf4ae1-09b9-4d29-a6f8-43e1820ce60c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read phone authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' phone authentication methods\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's phone authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's phone authentication methods\",\"id\":\"6c4aad61-f76b-46ad-a22c-57d4d3d962af\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your phone authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your phone authentication methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Phone methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' phone methods.\",\"id\":\"48c99302-9a24-4f27-a8a7-acef4debba14\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write phone methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' phone methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's platform credential authentication methods\",\"id\":\"9c694582-e8f2-40e2-8353-fb43e2e0f12a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your platform credential authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.Read\"},{\"adminConsentDescription\":\"Allows + the app to read platform credentials methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' platform credentials + methods\",\"id\":\"5936156c-f89b-4850-997d-026c4e6ce529\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read platform credentials methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' platform credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's platform credential authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's platform credential authentication methods\",\"id\":\"70327f81-b953-43c9-92d3-131c74e4beb8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' platform credentials methods.\",\"id\":\"cb11bf8c-dde1-4504-b6a5-31e1562b0749\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' platform + credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's QR authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's QR authentication methods\",\"id\":\"d6893c31-9187-405c-8dfc-f700c8fc161a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your QR authentication methods. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"userConsentDisplayName\":\"Read your QR authentication + methods\",\"value\":\"UserAuthMethod-QR.Read\"},{\"adminConsentDescription\":\"Allows + the app to read QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' QR methods\",\"id\":\"e4900dfb-ad17-410d-8ddb-7aebd8a6af1a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read QR authentication methods of all users you have access to + in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' QR methods\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's QR authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's QR authentication methods\",\"id\":\"651210da-18ce-4e42-b7db-302ff88e9326\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your QR authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your QR authentication methods\",\"value\":\"UserAuthMethod-QR.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' QR methods.\",\"id\":\"db39086a-da7d-4cbd-9ac0-6816f9a80c95\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' QR methods\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's SoftwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's SoftwareOATH authentication methods\",\"id\":\"247f2733-6e3d-46ff-a904-f5fd58eb0d97\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your SoftwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your SoftwareOATH + authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"id\":\"3e366fa0-3097-4eb6-8294-3028f77eea6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's SoftwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's SoftwareOATH authentication methods\",\"id\":\"16721eb3-4493-4ae1-9542-264d9ffe3ce9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your SoftwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your SoftwareOATH authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' SoftwareOATH methods.\",\"id\":\"5b34c8b5-2396-4b35-b284-83fb6a3e73ce\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' SoftwareOATH + methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"84ded88f-26ba-49d6-b776-efec398de692\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Temporary Access Pass authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Temporary Access Pass methods\",\"id\":\"6976c635-c9c2-41e6-a21d-e6913a155273\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Temporary Access Pass + methods\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"2424436d-902f-4651-a1c7-b3b93147c960\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Temporary Access Pass authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users in your organization that the signed-in user has access to. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write all users' Temporary Access Pass methods.\",\"id\":\"05de4a66-e51a-4312-842a-30c8094698d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users you have access to in your organization. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read and write + all users' Temporary Access Pass methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Windows Hello authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Windows Hello methods\",\"id\":\"efe2b5aa-3a8e-486c-b0be-cc4d185c1b40\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Windows Hello authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your Windows + Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Windows Hello methods\",\"id\":\"ff37d46d-b88a-4e0c-85ee-7e26c37b18eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Windows Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Windows Hello authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Windows Hello authentication methods\",\"id\":\"f11e1db9-d419-4a24-b677-792723ffd727\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Windows Hello authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Windows Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Windows Hello methods.\",\"id\":\"13eae17d-aaa4-47b8-aaee-0eb33c6e2450\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Windows + Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read cloud clipboard data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + cloud clipboard items\",\"id\":\"61e8a09a-087f-4e36-8c8c-1c77c5228017\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your cloud clipboard items.\",\"userConsentDisplayName\":\"Read + cloud clipboard items\",\"value\":\"UserCloudClipboard.Read\"},{\"adminConsentDescription\":\"Allows the app to send, read, update and delete user\u2019s notifications.\",\"adminConsentDisplayName\":\"Deliver and manage user's notifications\",\"id\":\"26e2f3e8-b2a1-47fc-9620-89bb5b042024\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send, read, update and delete your app-specific notifications.\",\"userConsentDisplayName\":\"Deliver @@ -14513,15 +10387,36 @@ interactions: Timeline.\",\"adminConsentDisplayName\":\"Write app activity to users' timeline\",\"id\":\"367492fc-594d-4972-a9b5-0d58c622c91c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to report your app activity information to Microsoft Timeline.\",\"userConsentDisplayName\":\"Write app activity to your timeline\",\"value\":\"UserTimelineActivity.Write.CreatedByApp\"},{\"adminConsentDescription\":\"Allows + the app to read a user's windows settings which are stored in cloud and their + values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + windows settings for all devices\",\"id\":\"77e07bab-1b34-40a5-bb6c-4b197b3f6027\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your windows settings which are stored in cloud and their + values.\",\"userConsentDisplayName\":\"Read your windows settings for all + devices\",\"value\":\"UserWindowsSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write a user's windows settings which are stored in cloud + and their values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write windows settings for all devices\",\"id\":\"dcb1026d-b7e1-4d31-9f61-6724d5140bf9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your windows settings which are stored in cloud + and their values.\",\"userConsentDisplayName\":\"Read and write your windows + settings for all devices\",\"value\":\"UserWindowsSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + Verified Id profiles\",\"id\":\"604b2056-41ed-4c56-aad5-1241d4ef7333\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + Verified Id profiles\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"adminConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + and write Verified Id profiles\",\"id\":\"e4a9cb5e-4767-48f8-9029-decf26a54456\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + and write Verified Id profiles\",\"value\":\"VerifiedId-Profile.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows an application to read virtual appointments for the signed-in user. Only an - organizer or participant user can read their virtual appointments.\\u202F\\u00A0\",\"adminConsentDisplayName\":\"Read + organizer or participant user can read their virtual appointments. \",\"adminConsentDisplayName\":\"Read a user's virtual appointments\",\"id\":\"27470298-d3b8-4b9c-aad4-6334312a3eac\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read virtual appointments on your behalf.\\u202F\\u202F\",\"userConsentDisplayName\":\"Read - your virtual appointments\\u202F\",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows + the app to read virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read + your virtual appointments \",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows an application to read and write virtual appointments for the signed-in user. - Only an organizer or participant user can read and write their virtual appointments.\\u202F\",\"adminConsentDisplayName\":\"Read - and write a user's virtual appointments\\u202F\\u00A0\",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read and write virtual appointments on your behalf.\\u202F\\u00A0\",\"userConsentDisplayName\":\"Read + Only an organizer or participant user can read and write their virtual appointments. + \",\"adminConsentDisplayName\":\"Read and write a user's virtual appointments + \ \",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read and write your virtual appointments\",\"value\":\"VirtualAppointment.ReadWrite\"},{\"adminConsentDescription\":\"Allows an application to send notifications for virtual appointments for the signed-in user.\",\"adminConsentDisplayName\":\"Send notification regarding virtual @@ -14556,11 +10451,20 @@ interactions: workforce integrations\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"passwordCredentials\":[],\"resourceSpecificApplicationPermissions\":[{\"description\":\"Allows the app to read user AI enterprise interactions, without a signed-in user.\",\"displayName\":\"Read user AI enterprise interactions.\",\"id\":\"10d712aa-b4cd-4472-b0ba-6196e04c344f\",\"isEnabled\":true,\"value\":\"AiEnterpriseInteraction.Read.User\"},{\"description\":\"Allows + the teams-app to read all aiInsights for calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all AI Insights for calls + where the Teams application is installed.\",\"id\":\"ff9d3910-ca91-4e7f-843f-d44ab36a961a\",\"isEnabled\":true,\"value\":\"CallAiInsights.Read.Chat\"},{\"description\":\"Allows + the teams-app to read all recordings of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all recordings of calls + where the Teams application is installed.\",\"id\":\"22748df0-bd8c-4626-aad9-6dab421b33e4\",\"isEnabled\":true,\"value\":\"CallRecordings.Read.Chat\"},{\"description\":\"Allows the app to access media streams in calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Access media streams in calls associated with this chat or meeting\",\"id\":\"e716890c-c30a-4ac3-a0e3-551e7d9e8deb\",\"isEnabled\":true,\"value\":\"Calls.AccessMedia.Chat\"},{\"description\":\"Allows the app to join calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Join calls associated with this chat or meeting\",\"id\":\"a01e73f1-94da-4f6d-9b73-02e4ea65560b\",\"isEnabled\":true,\"value\":\"Calls.JoinGroupCalls.Chat\"},{\"description\":\"Allows + the Teams app to read all transcripts of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all transcripts of calls + where the Teams app is installed.\",\"id\":\"7990a5df-4c51-43ea-939c-3e8b18d6ddad\",\"isEnabled\":true,\"value\":\"CallTranscripts.Read.Chat\"},{\"description\":\"Allows the app to create channels in this team, without a signed-in user.\",\"displayName\":\"Create channels in this team\",\"id\":\"65af85d7-62bb-4339-a206-7160fd427454\",\"isEnabled\":true,\"value\":\"Channel.Create.Group\"},{\"description\":\"Allows the app to delete this team's channels, without a signed-in user.\",\"displayName\":\"Delete @@ -14613,10 +10517,16 @@ interactions: and write this chat's settings\",\"id\":\"ed928a9c-7530-496a-a624-4c0a460ab3ed\",\"isEnabled\":true,\"value\":\"ChatSettings.ReadWrite.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's members, without a signed-in user.\",\"displayName\":\"Read this group's members\",\"id\":\"0a8ce3c7-89dd-46cf-b2c3-5ef0064437a8\",\"isEnabled\":true,\"value\":\"Member.Read.Group\"},{\"description\":\"Allows + the app to read this meeting and subscribe to meeting call updates.\",\"displayName\":\"Read + this meeting and subscribe to meeting call updates .\",\"id\":\"f991ed3f-9617-4d8d-b06c-d18d9fcbcf2a\",\"isEnabled\":true,\"value\":\"OnlineMeeting.Read.Chat\"},{\"description\":\"Allows the app to read basic properties, such as name, schedule, organizer, join link, and start or end notifications, of meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read basic properties of meetings associated with this chat\",\"id\":\"eda8d262-4e6e-4ff6-a7ba-a2fb50535165\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadBasic.Chat\"},{\"description\":\"Allows + the app to manage this online meeting, and subscribe to meeting call updates.\",\"displayName\":\"Manage + this meeting and subscribe to meeting call updates.\",\"id\":\"93400bb4-2282-4371-a745-a86d64c966d0\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadWrite.Chat\"},{\"description\":\"Read + attendance reports & attendance records for this webinar or town hall.\",\"displayName\":\"Read + virtual event artifacts\",\"id\":\"c5d06837-8c0d-42fc-9e49-545e3f941261\",\"isEnabled\":true,\"value\":\"OnlineMeetingArtifact.Read.Chat\"},{\"description\":\"Allows the app to send notifications inside meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Send notifications in the meetings associated with this chat\",\"id\":\"d9837fe0-9c31-4faa-8acb-b10874560161\",\"isEnabled\":true,\"value\":\"OnlineMeetingNotification.Send.Chat\"},{\"description\":\"Allows @@ -14626,9 +10536,9 @@ interactions: with this chat\",\"id\":\"6324a770-185c-4b4f-be13-2d9a1668e6eb\",\"isEnabled\":true,\"value\":\"OnlineMeetingParticipant.Read.Chat\"},{\"description\":\"Allows the app to read recordings of the meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read the recordings of the meetings - associated with this chat\\u00A0\",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows + associated with this chat \",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows the app to read transcripts of the meetings associated with this chat, without - a signed-in user.\\u00A0\",\"displayName\":\"Read the transcripts of the meetings + a signed-in user. \",\"displayName\":\"Read the transcripts of the meetings associated with this chat\",\"id\":\"8c477e19-f0f7-45f9-ae72-604f77a599e3\",\"isEnabled\":true,\"value\":\"OnlineMeetingTranscript.Read.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's owners, without a signed-in user.\",\"displayName\":\"Read this group's owners\",\"id\":\"70d5316c-9b27-4057-a650-3b0fe49002ab\",\"isEnabled\":true,\"value\":\"Owner.Read.Group\"},{\"description\":\"Allows @@ -14675,20 +10585,25 @@ interactions: the app to manage this chat's tabs, without a signed-in user.\",\"displayName\":\"Manage this chat's tabs\",\"id\":\"d583f4d7-57da-4b2c-9744-253e9ec3c7be\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Chat\"},{\"description\":\"Allows the app to manage this team's tabs, without a signed-in user.\",\"displayName\":\"Manage - this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"}],\"samlSingleSignOnSettings\":{\"relayState\":null},\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" + this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"},{\"description\":\"Read + information for this webinars or town halls, including schedules, speakers, + and event settings and webinar registrations.\",\"displayName\":\"Read virtual + event details\",\"id\":\"298266a0-fbf7-4804-b988-5a54e61566c8\",\"isEnabled\":true,\"value\":\"VirtualEvent.Read.Chat\"},{\"description\":\"Register + attendees and cancel registrations for this webinar.\",\"displayName\":\"Manage + virtual event registrations\",\"id\":\"0e646cc8-6b07-4030-9a41-a7db4644b4cc\",\"isEnabled\":true,\"value\":\"VirtualEventRegistration-Anon.ReadWrite.Chat\"}],\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" headers: cache-control: - no-cache content-length: - - '550263' + - '676759' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:36 GMT + - Wed, 24 Dec 2025 05:48:25 GMT odata-version: - '4.0' request-id: - - 682c30a5-b05a-45f0-a9b2-c2fb62285b05 + - bfc4ed5a-6c03-4cff-af81-4a393f4eebb2 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -14696,7 +10611,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF0000657B"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF000174A6"}}' x-ms-resource-unit: - '1' status: @@ -14716,9 +10631,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/98205e9c-c53d-4d0f-a8fb-9b39ce283257/appRoleAssignments + uri: https://graph.microsoft.com/v1.0/servicePrincipals/15e6a625-bced-4c31-ac49-9bd078a8cfd6/appRoleAssignments response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#appRoleAssignments","value":[]}' @@ -14730,11 +10645,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:38 GMT + - Wed, 24 Dec 2025 05:48:25 GMT odata-version: - '4.0' request-id: - - 2c4adbde-0160-4b19-a806-a166001dcff4 + - 4ddcf4f1-6518-4411-bda9-f45a6aff56f9 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -14742,7 +10657,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00022E06"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF00016F84"}}' x-ms-resource-unit: - '2' status: @@ -14762,30 +10677,30 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"98205e9c-c53d-4d0f-a8fb-9b39ce283257\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"15e6a625-bced-4c31-ac49-9bd078a8cfd6\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -14798,7 +10713,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -14806,17 +10721,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:39 GMT + - Wed, 24 Dec 2025 05:48:26 GMT etag: - '"4"' expires: @@ -14832,16 +10747,16 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23975,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 160D128748D74A7D8870B084B000C37D Ref B: TYO201151003042 Ref C: 2025-04-02T09:36:39Z' + - 'Ref A: 265CDA1A2F0448A6B77DD12C5CF4BD20 Ref B: SG2AA1040520025 Ref C: 2025-12-24T05:48:26Z' status: code: 200 message: '' - request: - body: '{"identity": {"type": "UserAssigned"}}' + body: '{"identity": {"userAssignedIdentities": null, "type": "UserAssigned"}}' headers: Accept: - application/json @@ -14852,13 +10767,13 @@ interactions: Connection: - keep-alive Content-Length: - - '38' + - '70' Content-Type: - application/json ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -14867,19 +10782,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -14892,7 +10807,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -14900,21 +10815,21 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a4dcae2f-d4df-4f93-baac-31ce5384d786?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834033112910&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=QtBvVZ0Ekgb9_tIO5Q6JRTjc_wD7C4iaLIdhcJM_YT_RXP_cvbCiKMO38CNxJ19L4GkQURQnZwme9_yfg6MG9iglrjXsWVVgA9bk83h_JAfN6m-a-29QgfRcprVgaMsVBYt0j29yL0vdiczRgX-QZmOA22vc-sxyvBadaCDb1mSqdq1p8BrBMqNNJ1ZjqA6J7L6ME7505mE5Qqh-WbS0ZALWVpzUo9_c0pN0ypq616zxJNPixfIGQK2C1snpl3a_pA9PDoVhWhJ96djODtEw1DH9AgEUevSNapnBP5ydor86mvS1cOFxNCIAF2C4ToVaPRGrGV9a9pn3avVuOuo29w&h=_tVBS76FZhKwEBdcEAMYCdAZXm550mKKHhXEIXDEsSo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8e81a153-bf11-40c7-874b-7efe6fae27ef?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521086280020&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=JcLZt7yvcLDP851pJc2UxerUKWplSPML0iq8sMDjIxMXarH41y1DGyutC6K7MX13MfBLDEMVCrLuv66q6NFc0JGwlRqrxbGeBvfqr174YYO9UkToDthAIl9y8rxSKfJgvxpfKuf79ZdheJbi3t_dvm5IOZgVmHP72VvoAz0YSpvstIs6xRrWgVur5dbrpl-xTI7etAaKw2du0iF2hkYnQk9N9acLjZA1nM1ov17YX4vmd47VhlAwSrHlNPgyp4fXFZlStQ3KkR9lnLW1PD0spBOHayO7wuxjJhkjSKgGy17FZZR9jtZNTSJGbSjGm28mAKEVKXFKvApX0CJfaK_4wQ&h=toH1yuXToHpPkQIweEmyk-nCvy_HKncksA-dakvzFAc cache-control: - no-cache content-length: - - '3466' + - '3457' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:43 GMT + - Wed, 24 Dec 2025 05:48:28 GMT etag: - '"5"' expires: @@ -14930,7 +10845,7 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/8b620364-d5ae-431a-882a-31c45c14e1cd + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/faf4bbfc-19b5-4c11-8827-2ba94d27fe4d x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: @@ -14938,7 +10853,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 012F50046A774C11B0CE61C97E095CE8 Ref B: TYO201151001029 Ref C: 2025-04-02T09:36:40Z' + - 'Ref A: 71F154AD961F4D8DB63AABCB966852C3 Ref B: SG2AA1040519062 Ref C: 2025-12-24T05:48:26Z' status: code: 200 message: '' @@ -14956,13 +10871,13 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a4dcae2f-d4df-4f93-baac-31ce5384d786?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834033112910&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=QtBvVZ0Ekgb9_tIO5Q6JRTjc_wD7C4iaLIdhcJM_YT_RXP_cvbCiKMO38CNxJ19L4GkQURQnZwme9_yfg6MG9iglrjXsWVVgA9bk83h_JAfN6m-a-29QgfRcprVgaMsVBYt0j29yL0vdiczRgX-QZmOA22vc-sxyvBadaCDb1mSqdq1p8BrBMqNNJ1ZjqA6J7L6ME7505mE5Qqh-WbS0ZALWVpzUo9_c0pN0ypq616zxJNPixfIGQK2C1snpl3a_pA9PDoVhWhJ96djODtEw1DH9AgEUevSNapnBP5ydor86mvS1cOFxNCIAF2C4ToVaPRGrGV9a9pn3avVuOuo29w&h=_tVBS76FZhKwEBdcEAMYCdAZXm550mKKHhXEIXDEsSo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8e81a153-bf11-40c7-874b-7efe6fae27ef?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521086280020&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=JcLZt7yvcLDP851pJc2UxerUKWplSPML0iq8sMDjIxMXarH41y1DGyutC6K7MX13MfBLDEMVCrLuv66q6NFc0JGwlRqrxbGeBvfqr174YYO9UkToDthAIl9y8rxSKfJgvxpfKuf79ZdheJbi3t_dvm5IOZgVmHP72VvoAz0YSpvstIs6xRrWgVur5dbrpl-xTI7etAaKw2du0iF2hkYnQk9N9acLjZA1nM1ov17YX4vmd47VhlAwSrHlNPgyp4fXFZlStQ3KkR9lnLW1PD0spBOHayO7wuxjJhkjSKgGy17FZZR9jtZNTSJGbSjGm28mAKEVKXFKvApX0CJfaK_4wQ&h=toH1yuXToHpPkQIweEmyk-nCvy_HKncksA-dakvzFAc response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:36:42.9601804+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a4dcae2f-d4df-4f93-baac-31ce5384d786\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:48:28.5796513+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8e81a153-bf11-40c7-874b-7efe6fae27ef\"\r\n}" headers: cache-control: - no-cache @@ -14971,7 +10886,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:36:44 GMT + - Wed, 24 Dec 2025 05:48:30 GMT expires: - '-1' pragma: @@ -14985,13 +10900,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/59150693-6b65-41c7-a90b-a85101584f9e + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/4bc858ac-7bff-46d6-92c9-0650d179e1bf x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14977 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4BAF4CAEB9AC42A5B7D20FBF5EC67A5E Ref B: TYO201151001029 Ref C: 2025-04-02T09:36:44Z' + - 'Ref A: 7EB4E22D5AA9439CB05C578DFE9A41E9 Ref B: SG2AA1070304036 Ref C: 2025-12-24T05:48:29Z' status: code: 200 message: '' @@ -15009,14 +10924,14 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a4dcae2f-d4df-4f93-baac-31ce5384d786?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834033112910&c=MIIHhzCCBm-gAwIBAgITfAaYKeS_Y1hBpcE2bQAABpgp5DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTIzMTU0OTA5WhcNMjUwNzIyMTU0OTA5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJbiXA51hGktR2MNbSlroYAHe7pbqEWp0A-TCXSyvin2bII7xH08VxT-hAYBjJp17FiHgK9yK-xq6xfHxRSkMqVLkhWjjn4M5cKxT5b-z30Idwg-Fll_gejERu-ZctFls3HYGEJgA2O7dsco88yDNzLfiKSrydo3reGuee9BMkVU_0WnoEcz5QgETf6hOK5mSgOdhXRk6FrlEa0N4utrIz8wgMfqAkwy8FeWekNPgQSFLnP5qBUvtll1zGq1kC8A8eGNTNv4EJTXpmWf3UT7hYgMr3Pl5sGhjct9JtFcEqV9OKRhnaboSPU7Jgjus-w7zzWRiTHRXzpLe7MLqQkJDd0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSFhGHUx6qYRUgSEA_wnhKzeB4DBzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJoUa4AH2sOlm-m22mrE9jtxKT-RediVwcDUWanH-WJBU0CRfHD_ElVnglvs2wcg1EGK-SqbymEwPyLUqrR6H2nZZKQ7XBPyx6zIY7Nc8wfa2FAW3aeVbFd9A4SXuxuoo0bUde_rNuZkwwXKodh1x4WIOowJO51S7Rc7pCn0g_3e8LxMcDfqZTds4GBtPE6MfSLTANZlNO016j0gkCqgRCvlfg8_iJEyjnyI6oGBnX9mH-FXRvvC-5x2gki77aXS-NmKl72SQUmKv8-ygNzrrctb5cnfZRNo5nkoGtPgeEyxmqOk3fW5plNGaKviNHmUh3HM0BlcCpPyDaIev-fej44&s=QtBvVZ0Ekgb9_tIO5Q6JRTjc_wD7C4iaLIdhcJM_YT_RXP_cvbCiKMO38CNxJ19L4GkQURQnZwme9_yfg6MG9iglrjXsWVVgA9bk83h_JAfN6m-a-29QgfRcprVgaMsVBYt0j29yL0vdiczRgX-QZmOA22vc-sxyvBadaCDb1mSqdq1p8BrBMqNNJ1ZjqA6J7L6ME7505mE5Qqh-WbS0ZALWVpzUo9_c0pN0ypq616zxJNPixfIGQK2C1snpl3a_pA9PDoVhWhJ96djODtEw1DH9AgEUevSNapnBP5ydor86mvS1cOFxNCIAF2C4ToVaPRGrGV9a9pn3avVuOuo29w&h=_tVBS76FZhKwEBdcEAMYCdAZXm550mKKHhXEIXDEsSo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8e81a153-bf11-40c7-874b-7efe6fae27ef?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521086280020&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=JcLZt7yvcLDP851pJc2UxerUKWplSPML0iq8sMDjIxMXarH41y1DGyutC6K7MX13MfBLDEMVCrLuv66q6NFc0JGwlRqrxbGeBvfqr174YYO9UkToDthAIl9y8rxSKfJgvxpfKuf79ZdheJbi3t_dvm5IOZgVmHP72VvoAz0YSpvstIs6xRrWgVur5dbrpl-xTI7etAaKw2du0iF2hkYnQk9N9acLjZA1nM1ov17YX4vmd47VhlAwSrHlNPgyp4fXFZlStQ3KkR9lnLW1PD0spBOHayO7wuxjJhkjSKgGy17FZZR9jtZNTSJGbSjGm28mAKEVKXFKvApX0CJfaK_4wQ&h=toH1yuXToHpPkQIweEmyk-nCvy_HKncksA-dakvzFAc response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:36:42.9601804+00:00\",\r\n \"endTime\": - \"2025-04-02T09:36:51.5540126+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a4dcae2f-d4df-4f93-baac-31ce5384d786\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:48:28.5796513+00:00\",\r\n \"endTime\": + \"2025-12-24T05:48:33.9546491+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8e81a153-bf11-40c7-874b-7efe6fae27ef\"\r\n}" headers: cache-control: - no-cache @@ -15025,7 +10940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:14 GMT + - Wed, 24 Dec 2025 05:49:00 GMT expires: - '-1' pragma: @@ -15039,13 +10954,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/c61258cd-087d-4721-bec8-9a39679057e3 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/9d68cf3b-6e82-4ba6-8a8c-0a1e9e5807d8 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14991 + - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C267B692158842688C6E6C90413C432B Ref B: TYO201151001029 Ref C: 2025-04-02T09:37:14Z' + - 'Ref A: C2704DA8E81D4CE6B7FB0A66553C336E Ref B: SG2AA1040512034 Ref C: 2025-12-24T05:49:00Z' status: code: 200 message: '' @@ -15063,7 +10978,7 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -15072,19 +10987,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -15097,7 +11012,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -15105,17 +11020,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:14 GMT + - Wed, 24 Dec 2025 05:49:01 GMT etag: - '"5"' expires: @@ -15131,11 +11046,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1AA9A85EAB8546E9A5F3B3B251971AD6 Ref B: TYO201151001029 Ref C: 2025-04-02T09:37:14Z' + - 'Ref A: 27B70CF7DD26472E815A69C52FA8D0DC Ref B: SG2AA1070303025 Ref C: 2025-12-24T05:49:01Z' status: code: 200 message: '' @@ -15153,7 +11068,7 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -15162,19 +11077,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -15187,7 +11102,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -15195,17 +11110,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:15 GMT + - Wed, 24 Dec 2025 05:49:01 GMT etag: - '"5"' expires: @@ -15221,11 +11136,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 321D4160C4E24460B6E489E5A4D90D9B Ref B: TYO201100117017 Ref C: 2025-04-02T09:37:15Z' + - 'Ref A: C4354F0F3F234C2BA12CD2D776FE7B73 Ref B: SG2AA1070305034 Ref C: 2025-12-24T05:49:02Z' status: code: 200 message: '' @@ -15243,9 +11158,9 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/3289ca6d-17dc-43d7-99ab-55c2aa49338a/transitiveMemberOf/microsoft.graph.directoryRole + uri: https://graph.microsoft.com/v1.0/servicePrincipals/562c81c5-d273-4843-9627-c0944d91e825/transitiveMemberOf/microsoft.graph.directoryRole response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryRoles","value":[]}' @@ -15257,11 +11172,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:17 GMT + - Wed, 24 Dec 2025 05:49:01 GMT odata-version: - '4.0' request-id: - - c61e2df6-5fbf-4431-838c-2e67495836ef + - 6083ae09-7bec-46c5-9a2b-680fe8c33a0f strict-transport-security: - max-age=31536000 transfer-encoding: @@ -15269,7 +11184,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00010EFA"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF00018370"}}' x-ms-resource-unit: - '2' status: @@ -15289,14 +11204,14 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=displayName%20eq%20'Microsoft%20Graph' response: body: - string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"a3efc889-f1b7-4532-9e01-91e32d1039f4\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft - Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":null,\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft - Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"Microsoft.Azure.AgregatorService\",\"https://dod-graph.microsoft.us\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"980db52a-afb6-4420-b0b2-23bf76ce409b\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft + Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":\"2025-11-19T22:28:39Z\",\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft + Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://dod-graph.microsoft.us\",\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"samlSingleSignOnSettings\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.\",\"displayName\":\"Read all access reviews\",\"id\":\"d07a8cc0-3d51-4b77-b3b0-32704d1f69fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AccessReview.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, update, delete and perform actions on access reviews, reviewers, @@ -15313,6 +11228,90 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.\",\"displayName\":\"Read and write all administrative units\",\"id\":\"5eb59dd3-1da2-4329-8733-9dabdc435916\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent cards and their skills in your organization's Agent + Registry without a signed-in user.\",\"displayName\":\"Read all agent cards + in Agent Registry\",\"id\":\"aec9e0a0-6f46-4150-a9f7-05e9e3e87399\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent cards and manage their + skills in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all agent cards in Agent Registry\",\"id\":\"ef566853-42d6-45a5-bed9-5ccb82c98b4f\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent cards that designate the calling app as their + manager and manage their skills in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent cards + in Agent Registry\",\"id\":\"9c4a07db-e0c1-4fb0-8e85-dfd8ae3b8201\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent card manifests in your organization's Agent Registry + without a signed-in user.\",\"displayName\":\"Read all agent card manifests + in Agent Registry\",\"id\":\"3ee18438-e6e5-4858-8f1c-d7b723b45213\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write to all agent card manifests in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent card manifests in Agent Registry\",\"id\":\"228b1a03-f7ca-4348-b50d-e8a547ab61af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write agent card manifests that name it as manager in + your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write managed-by agent card manifests in Agent Registry\",\"id\":\"77f6034c-52f5-4526-9fa1-d55a67e72cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all collections and their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read all collections + in Agent Registry\",\"id\":\"e65ee1da-d1d5-467b-bdd0-3e9bb94e6e0c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all collections and manage their + membership in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all collections in Agent Registry\",\"id\":\"feb31d7d-a227-4487-898c-e014840d07b3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete collections that designate the + calling app as their manager and manage their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + managed-by collections in Agent Registry\",\"id\":\"2e0fb698-9996-479f-926b-ce63f4397829\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create agent identities, even if the app is not the parent agent + identity blueprint.\",\"displayName\":\"Create agent identities without an + agent blueprint parent\",\"id\":\"ad25cc1d-84d8-47df-a08e-b34c2e800819\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create linked agent identities without a signed-in user.\",\"displayName\":\"Create + agent identities linked to itself.\",\"id\":\"4c390976-b2b7-42e0-9187-c6be3bead001\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.CreateAsManager\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to delete and restore agent identities without a signed-in user.\",\"displayName\":\"Delete + and restore agent identities\",\"id\":\"5b016f9b-18eb-41d4-869a-66931914d1c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to enable or disable agent identities without a signed-in user.\",\"displayName\":\"Enable + or disable agent identities\",\"id\":\"69ee0943-4fa4-4ec8-8e52-d12e4ea661a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identities without a signed-in user.\",\"displayName\":\"Read + all agent identities\",\"id\":\"b2b8f011-2898-4234-9092-5059f6c1ebfa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app read, update, and delete agent identities without a signed-in user.\",\"displayName\":\"Read + and write all agent identities\",\"id\":\"dcf7150a-88d4-4fe6-9be1-c2744c455397\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint credentials without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint credentials\",\"id\":\"0510736e-bdfb-4b37-9a1f-89b4a074763a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprints without a signed-in user.\",\"displayName\":\"Create + agent identity blueprints.\",\"id\":\"ea4b2453-ad2d-4d94-9155-10d5d9493ce9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"3f80b699-6405-4e36-a4df-4f19950ff91e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identity blueprints without a signed-in user.\",\"displayName\":\"Read + all agent identity blueprints\",\"id\":\"7547a7d1-36fa-4479-9c31-559a600eaa4f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprints without a signed-in + user.\",\"displayName\":\"Read and write all agent identity blueprints.\",\"id\":\"7fddd33b-d884-4ec0-8696-72cff90ff825\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint authorization and authentication properties + without a signed-in user.\",\"displayName\":\"Update agent identity blueprint + authorization and authentication properties\",\"id\":\"19202363-278e-49c2-bf00-391e2ba00881\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint branding without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint branding\",\"id\":\"76232daa-a1e4-4544-b664-495a006513bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"8959696d-d07e-4916-9b1e-3ba9ce459161\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f86a2dd8-9298-4675-bd78-f5a3572da2d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + enabling or disabling agent identity blueprint principals without a signed-in + user.\",\"displayName\":\"Enable or disable agent identity blueprint principals.\",\"id\":\"a0bdd23d-8b19-4682-b428-574d96527c6f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + reading agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Read + agent identity blueprint principals.\",\"id\":\"9361dea9-4524-493d-941d-f1b65aaf6c7c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprint principals without + a signed-in user.\",\"displayName\":\"Read and write all agent identity blueprint + principals.\",\"id\":\"3bc933bc-8b4d-4cb6-ac49-b73774299250\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent ID user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"b782c9ad-6f2b-4894-a21b-72bf22417f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update ID agent user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"4aa6e624-eee0-40ab-bdd8-f9639038a614\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent instances and their related collections in your + organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + all agent instances in Agent Registry\",\"id\":\"799a4732-85b8-4c67-b048-75f0e88a232b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent instances in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent instances in Agent Registry\",\"id\":\"07abdd95-78dc-4353-bd32-09f880ea43d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete agent instances that designate + the calling app as their manager in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent instances + in Agent Registry\",\"id\":\"782ab1bf-24f1-4c27-8bbc-2006d42792a6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read terms of use agreements, without a signed in user.\",\"displayName\":\"Read all terms of use agreements\",\"id\":\"2f3e6f8c-093b-4c57-a58b-ba5ce494a169\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Agreement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write terms of use agreements, without a signed in user.\",\"displayName\":\"Read @@ -15336,12 +11335,14 @@ interactions: and write the remote desktop security configuration for all apps\",\"id\":\"3be0012a-cc4e-426b-895b-f9c836bf6381\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application-RemoteDesktopConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all applications and service principals without a signed-in user.\",\"displayName\":\"Read all applications\",\"id\":\"9a5d68dd-52b0-4cc2-bd40-abcf44ac3a30\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update all apps in your organization, without a signed-in + user.\",\"displayName\":\"Read and update all apps\",\"id\":\"fc023787-fd04-4e44-9bc7-d454f00c0f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadUpdate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.\",\"displayName\":\"Read and write all applications\",\"id\":\"1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in - user. \\u00A0It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage + user. It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage apps that this app creates or owns\",\"id\":\"18a4783c-866b-4cc7-a460-3d5e5662c884\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without @@ -15356,7 +11357,11 @@ interactions: a signed-in user.\",\"displayName\":\"Read attack simulation data of an organization\",\"id\":\"93283d0a-6322-4fa8-966b-8c121624760d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, and update attack simulation and training data for an organization without a signed-in user.\",\"displayName\":\"Read, create, - and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + activity audit log from the audit store.\",\"displayName\":\"Read activity + audit log from the audit store.\",\"id\":\"99bc85fb-e857-4220-9f8c-3a1c83148d2e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"displayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"f6318678-2713-4bb6-b123-233e7336c1bd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query your audit log activities, without a signed-in user.\",\"displayName\":\"Read all audit log data\",\"id\":\"b0afded3-3588-46d8-8b3d-9842eff778da\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query audit logs from Dynamics CRM workload, without a @@ -15451,6 +11456,8 @@ interactions: basic details of calendars in all mailboxes \",\"id\":\"8ba4a692-bc31-4128-9094-475872af8a53\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete events of all calendars without a signed-in user.\",\"displayName\":\"Read and write calendars in all mailboxes\",\"id\":\"ef54d2bf-783f-4e0f-bca1-3210c0444d99\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all AI Insights for all calls, without a signed-in user.\",\"displayName\":\"Read + all AI Insights for calls.\",\"id\":\"792b782b-7822-4b92-8103-77e44f2f706c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallAiInsights.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read delegation settings of you\",\"displayName\":\"Read delegation settings\",\"id\":\"5aa33e77-b893-495e-bdc5-4bf6f27d42a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallDelegation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write delegation settings of you\",\"displayName\":\"Read @@ -15461,6 +11468,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read all call events\",\"id\":\"1abb026f-7572-49f6-9ddd-ad61cbba181e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallEvents.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all PSTN and direct routing call log data without a signed-in user.\",\"displayName\":\"Read PSTN and direct routing call log data\",\"id\":\"a2611786-80b3-417e-adaa-707d4261a5f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecord-PstnCalls.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call recordings for all calls without a signed-in user.\",\"displayName\":\"Read + all call recordings\",\"id\":\"ce8fb1f1-5e1f-44a0-b102-4ec28454d0dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecordings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read call records for all calls and online meetings without a signed-in user.\",\"displayName\":\"Read all call records\",\"id\":\"45bbb07e-7321-4fd7-a8f6-3ff27e6a81c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecords.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to get direct access to media streams in a call, without a signed-in @@ -15472,13 +11481,15 @@ interactions: meetings in your organization, without a signed-in user.\",\"displayName\":\"Initiate outgoing group calls from the app\",\"id\":\"4c277553-8a09-487b-8023-29ee378d8324\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.InitiateGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to join group calls and scheduled meetings in your organization, without - a signed-in user. \\u00A0The app will be joined with the privileges of a directory + a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.\",\"displayName\":\"Join group calls and meetings as an app\",\"id\":\"f6b49018-60ab-4f81-83bd-22caeabfed2d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to anonymously join group calls and scheduled meetings in your organization, - without a signed-in user. \\u00A0The app will be joined as a guest to meetings - in your organization.\",\"displayName\":\"Join group calls and meetings as - a guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. The app will be joined as a guest to meetings in + your organization.\",\"displayName\":\"Join group calls and meetings as a + guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call transcripts for all calls without a signed-in user.\",\"displayName\":\"Read + all call transcripts\",\"id\":\"4cd61b6d-8692-40bf-9d90-7f38db5e5fce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallTranscripts.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows to read all Change Management items.\",\"displayName\":\"Read Change Management items\",\"id\":\"418dae40-2b65-4819-900c-519a04e4d278\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChangeManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Create channels in any team, without a signed-in user.\",\"displayName\":\"Create @@ -15503,7 +11514,7 @@ interactions: and write the names, descriptions, and settings of all channels, without a signed-in user.\",\"displayName\":\"Read and write the names, descriptions, and settings of all channels\",\"id\":\"243cded2-bd16-4fd6-a953-ff8177894c3d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create chats without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create chats without a signed-in user. \",\"displayName\":\"Create chats\",\"id\":\"d9c48af6-9ad9-47ad-82c3-63757137b9af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to delete and recover deleted chats, without a signed-in user.\",\"displayName\":\"Delete and recover deleted chats\",\"id\":\"9c7abde0-eacd-4319-bf9e-35994b1a1717\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.ManageDeletion.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -15564,26 +11575,42 @@ interactions: the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.\",\"displayName\":\"Read and write all consent requests\",\"id\":\"9f1b81a7-0223-4428-bfa4-0bcb5535f27d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all contacts in all mailboxes + without a signed-in user.\",\"displayName\":\"Read and update the on-premises + sync behavior of contacts\",\"id\":\"c8948c23-e66b-42db-83fd-770b71ab78d2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read contacts in all mailboxes\",\"id\":\"089fe4d0-434a-44c5-8827-41ba8a0b17f5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read and write contacts in all mailboxes\",\"id\":\"6918b873-d17a-4dc1-b314-35f528134491\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"displayName\":\"Process content for + data security, governance and compliance\",\"id\":\"5ad511bf-571c-4ef6-8c3c-85b94b85df98\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"displayName\":\"Process content for data + security, governance and compliance\",\"id\":\"24ceb246-ad29-4680-90b4-3e91ffad15eb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + contents activity audit log from the audit store.\",\"displayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"368425e7-6954-4f5a-9d92-90b75bd580c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"displayName\":\"Upload + content activity audit logs to the audit store.\",\"id\":\"2932e07a-3c29-44e4-bb36-6d0fc176387f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read packages information without a signed-in user.\",\"displayName\":\"Read + all packages information\",\"id\":\"72f0655d-6228-4ddc-8e1b-164973b9213b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update packages information without a signed-in user.\",\"displayName\":\"Read + and update all packages information\",\"id\":\"ed31732f-9495-47ed-ba3b-4ed0948c1c64\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem without a signed-in user.\",\"displayName\":\"Read cross-tenant basic information\",\"id\":\"cac88765-0581-4025-9725-5ebc13f729ee\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export external user data (e.g. customer content or system-generated + with the current tenant without a signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read + all shared cross-tenant user profiles and export their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to list and query any shared user profile information associated + with the current tenant without a signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant user profiles and export - their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export and remove external user data (e.g. customer content - or system-generated logs), for any user associated with the current tenant - without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant - user profiles and export or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's custom authentication extensions without a signed-in user.\",\"displayName\":\"Read all custom authentication extensions\",\"id\":\"88bb2658-5d9e-454f-aacd-a3933e079526\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CustomAuthenticationExtension.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's custom authentication extensions @@ -15709,10 +11736,15 @@ interactions: all Azure AD recommendations\",\"id\":\"ae73097b-cb2a-4447-b064-5d80f6093921\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update all Azure AD recommendations, without a signed-in user.\",\"displayName\":\"Read and update all Azure AD recommendations\",\"id\":\"0e9eea12-4f01-45f6-9b8d-3ea4c8144158\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read internal federation configuration for a domain.\",\"displayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"c0e5a7b0-e8b7-40a7-b8e0-8249e6ea81d5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"displayName\":\"Create, read, update and delete internal + federation configuration for a domain.\",\"id\":\"64d40371-8d58-4270-bc8a-b4a66de36b9a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all domain properties without a signed-in user.\",\"displayName\":\"Read domains\",\"id\":\"dbb9058a-0e50-45d7-ae91-66909b5d4664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all domain properties without a signed in user. - \\u00A0Also allows the app to add, \\u00A0verify and remove domains.\",\"displayName\":\"Read + \ Also allows the app to add, verify and remove domains.\",\"displayName\":\"Read and write domains\",\"id\":\"7e05723c-0bb0-42da-be95-ae9f08a6e53c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.\",\"displayName\":\"Read @@ -15724,16 +11756,16 @@ interactions: Education app settings\",\"id\":\"7c9db06a-ec2d-4e7b-a592-5a1e30992566\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Manage the state and settings of all Microsoft education apps.\",\"displayName\":\"Manage education app settings\",\"id\":\"9bc431c3-b8bc-4a8d-a219-40f10f92eff6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments with grades for all users without - a signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments without grades for all users without + the app to read all class assignments with grades for all users without a + signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all class assignments without grades for all users without a signed-in user.\",\"displayName\":\"Read all class assignments without grades\",\"id\":\"6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments with - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments without - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments with grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments without grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all modules and resources, without a signed-in user.\",\"displayName\":\"Read all class modules and resources\",\"id\":\"6cdb464c-3a03-40f8-900b-4cb7ea1da9c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduCurricula.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all modules and resources, without a signed-in user.\",\"displayName\":\"Read @@ -15762,6 +11794,14 @@ interactions: and write the organization's roster\",\"id\":\"d1808e82-ce13-47af-ae0d-f9b254e6d58a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduRoster.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create Viva Engage conversations without a signed-in user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"e1d2136d-eaaf-427a-a7db-f97dbe847c27\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Migration.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage conversations, and to read their properties without + a signed-in user.\",\"displayName\":\"Read all Viva Engage conversations\",\"id\":\"2c495153-cd0e-41b4-9980-3bcecf1ca22f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create Viva Engage conversations, read all conversation properties, + update conversation properties, and delete conversations without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"bfbd4840-fba0-43a7-93a9-465b687e47d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage Teams QA conversations, and to read their properties + without a signed-in user.\",\"displayName\":\"Read all Viva Engage Teams QA + conversations\",\"id\":\"d746beae-b46e-446e-924a-5b805a5c4467\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to list all Viva Engage roles and role memberships without a signed-in user.\",\"displayName\":\"Read all Viva Engage roles and role memberships\",\"id\":\"30614864-4114-45ef-bdd9-0dd7894a1cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementRole.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to assign Viva Engage role to a user, and remove a Viva Engage role @@ -15778,6 +11818,8 @@ interactions: the app to read or write your organization's authentication event listeners without a signed-in user.\",\"displayName\":\"Read and write all authentication event listeners\",\"id\":\"0edf5e9e-4ce8-468a-8432-d08631d18c43\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EventListener.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to search the email message trace, without a signed-in user.\",\"displayName\":\"Search + the email message trace\",\"id\":\"89b20d8a-76e2-4057-867b-9961f800b9a4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all external connections without a signed-in user.\",\"displayName\":\"Read all external connections\",\"id\":\"1914711b-a1cb-4793-b019-c2ce0ed21b8c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExternalConnection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all external connections without a signed-in user.\",\"displayName\":\"Read @@ -15819,15 +11861,21 @@ interactions: without a signed-in user. The specific file storage containers and the permissions granted to them will be configured in Microsoft 365 by the developer of each container type.\",\"displayName\":\"Access selected file storage containers\",\"id\":\"40dc41bc-0f7e-42ff-89bd-d9516947e474\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainer.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to manage file storage container type registrations without + a signed-in user.\",\"displayName\":\"Access selected file storage container + type registrations\",\"id\":\"2dcc6599-bd30-442b-8f11-90f88ad441dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read all group conversations\",\"id\":\"4f0a8235-6f6f-4ec7-9500-34b452a4a0c3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read and write all group conversations\",\"id\":\"6679c91b-820a-4900-ab47-e97b197a89c4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all groups without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + groups\",\"id\":\"2d9bd318-b883-40be-9df7-63ec4fcdc424\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups without a signed-in user.\",\"displayName\":\"Create groups\",\"id\":\"bf7b1a76-6e77-406b-b258-bf5c7720e98f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read group properties and memberships, and read\\u00A0conversations - for all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read group properties and memberships, and read conversations for + all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by @@ -15838,6 +11886,11 @@ interactions: of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.\",\"displayName\":\"Read and write all group memberships\",\"id\":\"dbaae8cf-10b5-4b86-a4a1-f871c94c6695\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupMember.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + without a signed-in user.\",\"displayName\":\"Read all group settings\",\"id\":\"f3c4f514-c65a-43f5-bfce-1735872258dd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects, without a signed-in user.\",\"displayName\":\"Read + and write all group settings\",\"id\":\"546168c3-1183-4281-9491-fafb24dea37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all scenario health monitoring alerts, without a signed-in user.\",\"displayName\":\"Read all scenario health monitoring alert\",\"id\":\"5183ed5d-b7f8-4e9a-915e-dafb46b9cb62\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"HealthMonitoringAlert.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all scenario monitoring alerts, without a signed-in @@ -15857,7 +11910,11 @@ interactions: information\",\"id\":\"6e472fd1-ad78-48da-a0f0-97ab2c6b769e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event - detections.\\u00A0\",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + detections. \",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read the risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read all risky agents information\",\"id\":\"4aadfb66-d49a-414a-a883-d8c240b6fa33\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read and write risky agents information\",\"id\":\"dca4e4fd-a7cf-4e6f-86d1-d1ec094d766e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all risky service principal information for your organization, without a signed-in user.\",\"displayName\":\"Read all identity risky service principal information\",\"id\":\"607c7344-0eed-41e5-823a-9695ebe1b7b0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyServicePrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -15868,8 +11925,8 @@ interactions: without a signed in user.\",\"displayName\":\"Read all identity risky user information\",\"id\":\"dc5007c0-2d7d-4c42-879c-2dab87571379\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risky user information for your organization - without a signed-in user. \\u00A0Update operations include dismissing risky - users.\",\"displayName\":\"Read and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. Update operations include dismissing risky users.\",\"displayName\":\"Read + and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's user flows, without a signed-in user.\",\"displayName\":\"Read all identity user flows\",\"id\":\"1b0c317f-dd31-4305-9932-259a8b6e8099\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityUserFlow.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's user flows, without a signed-in @@ -15925,9 +11982,9 @@ interactions: directory, without a signed-in user.\",\"displayName\":\"Read and write all assignments\",\"id\":\"236c1cbd-1187-427f-b0f5-b1852454973b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningAssignedCourse.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all learning content in the organization's directory, without - a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - all learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - without a signed-in user.\",\"displayName\":\"Manage all\\u00A0learning\\u00A0content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to manage all learning content in the organization's directory, without + a signed-in user.\",\"displayName\":\"Manage all learning content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read data for all self-initiated courses in the organization's directory, without a signed-in user.\",\"displayName\":\"Read all self-initiated courses\",\"id\":\"467524fc-ed22-4356-a910-af61191e3503\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningSelfInitiatedCourse.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -15967,6 +12024,10 @@ interactions: the application to access a subset of lists without a signed in user. The specific lists and the permissions granted will be configured in SharePoint Online.\",\"displayName\":\"Access selected Lists without a signed in user.\",\"id\":\"23c5a9bd-d900-4ecf-be26-a0689755d9e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all email, including contents + of non-draft emails in user mailboxes, without a signed-in user. Does not + include permission to send mail.\",\"displayName\":\"Read and write mail in + all mailboxes, including modifying existing non-draft mails\",\"id\":\"e118f1da-5c1c-46cf-bff6-8858d786f46f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail-Advanced.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read mail in all mailboxes without a signed-in user.\",\"displayName\":\"Read mail in all mailboxes\",\"id\":\"810c84a8-4a9e-49e6-bf7d-12d183f40d01\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read basic mail properties in all mailboxes without a signed-in @@ -15980,10 +12041,16 @@ interactions: and write mail in all mailboxes\",\"id\":\"e2a3a72e-5f79-4c64-b1b1-878b674786c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send mail as any user without a signed-in user.\",\"displayName\":\"Send mail as any user\",\"id\":\"b633e1c5-b582-4048-a93e-9f11b44c7e96\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Send\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all users' UserConfiguration objects.\",\"displayName\":\"Read + all users' UserConfiguration objects\",\"id\":\"27d9d776-f4d2-426d-80ad-5f22f2b01b0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all users' UserConfiguration objects.\",\"displayName\":\"Read + and write all users' UserConfiguration objects\",\"id\":\"aa6d92d4-b25a-4640-aefe-3e3231e5e736\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read all the users' mailbox folders\",\"id\":\"99280d24-a782-4793-93cc-0888549957f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read and write all the users' mailbox folders\",\"id\":\"fef87b92-8391-4589-9da7-eb93dab7dc8a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to export all the users' mailbox items, without signed-in user.\",\"displayName\":\"Export + all the users' mailbox items\",\"id\":\"937550e9-33a3-494b-88ae-d9cd394b1fbb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to backup, restore, and modify all mailbox items without a signed-in user.\",\"displayName\":\"Allows the app to perform backup and restore for all mailbox items\",\"id\":\"76577085-e73d-4f1d-b26a-85fb33892327\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.ImportExport.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -16061,11 +12128,11 @@ interactions: without a signed in user.\",\"displayName\":\"Manage on-premises published resources\",\"id\":\"0b57845e-aa49-4e6f-8109-ce654fffa618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OnPremisesPublishingProfiles.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organization and related resources, without a signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. Related resources include things like subscribed skus and tenant branding + information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write the organization and related resources, without - a signed-in user.\\u00A0Related resources include things like subscribed skus - and tenant branding information.\",\"displayName\":\"Read and write organization + a signed-in user. Related resources include things like subscribed skus and + tenant branding information.\",\"displayName\":\"Read and write organization information\",\"id\":\"292d869f-3427-49a8-9dab-8c70152b74e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organizational branding information, without a signed-in user.\",\"displayName\":\"Read organizational branding information\",\"id\":\"eb76ac34-0d62-4454-b97c-185e4250dc20\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OrganizationalBranding.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -16136,6 +12203,8 @@ interactions: user.\",\"displayName\":\"Read and write telemetry for all workplace devices.\",\"id\":\"27fc435f-44e2-4b30-bf3c-e0ce74aed618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PlaceDeviceTelemetry.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all your organization's policies without a signed in user.\",\"displayName\":\"Read your organization's policies\",\"id\":\"246dd0d5-5bd0-4def-940b-0421030a5b68\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all authentication method policies for the tenant, without + a signed-in user. \",\"displayName\":\"Read authentication method policies\",\"id\":\"8e3bc81b-d2f3-4b7b-838c-32c88218d2f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's conditional access policies, without a signed-in user.\",\"displayName\":\"Read your organization's conditional access policies\",\"id\":\"37730810-e9ba-4e46-b07e-8ca78d182097\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.ConditionalAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -16161,8 +12230,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read and write authentication flow policies\",\"id\":\"25f85f3c-f66c-4205-8cd5-de92dd7f0cec\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all authentication method policies for the tenant, - without a signed-in user.\\u00A0\",\"displayName\":\"Read and write all authentication - method policies\\u00A0\",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. \",\"displayName\":\"Read and write all authentication + method policies \",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's authorization policy without a signed in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.\",\"displayName\":\"Read @@ -16173,9 +12242,13 @@ interactions: the app to read and write your organization's consent requests policy without a signed-in user.\",\"displayName\":\"Read and write your organization's consent request policy\",\"id\":\"999f8c63-0a38-4f1b-91fd-ed1947bdd1a9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read and write your organization's cross tenant access policies + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"displayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities without a signed-in user.\",\"displayName\":\"Read and write your organization's - cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + M365 cross tenant access capabilities\",\"id\":\"a6325ae7-2b73-4dbd-abed-fbeacfbf8696\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and write your organization's device configuration policies without a signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -16213,7 +12286,7 @@ interactions: includes activity, availability, status note, calendar out-of-office message, time zone and location.\",\"displayName\":\"Read and write presence information for all users\",\"id\":\"83cded22-8297-4ff6-a7fa-e97e9545a259\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Presence.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read printers without a signed-in user.\\u00A0\",\"displayName\":\"Read + the application to read printers without a signed-in user. \",\"displayName\":\"Read printers\",\"id\":\"9709bb33-4549-49d4-8ed9-a8f65e45bb0f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Printer.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update printers without a signed-in user. Does not allow creating (registering) or deleting (unregistering) printers.\",\"displayName\":\"Read @@ -16223,19 +12296,19 @@ interactions: read and update the metadata of print jobs.\",\"displayName\":\"Perform advanced operations on print jobs\",\"id\":\"58a52f47-9e36-4b17-9ebe-ce4ef7f3e6c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the metadata and document content of print jobs without - a signed-in user.\\u00A0\",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read the metadata of print jobs without a signed-in user.\\u00A0Does - not allow access to print job document content.\",\"displayName\":\"Read basic - information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user. \",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read the metadata of print jobs without a signed-in user. + Does not allow access to print job document content.\",\"displayName\":\"Read + basic information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata and document content of print jobs without a signed-in user.\",\"displayName\":\"Read and write print jobs\",\"id\":\"5114b07b-2898-4de7-a541-53b0004e2e13\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata of print jobs without a signed-in - user.\\u00A0Does not allow access to print job document content.\",\"displayName\":\"Read + user. Does not allow access to print job document content.\",\"displayName\":\"Read and write basic information for print jobs\",\"id\":\"57878358-37f4-4d3a-8c20-4816e0d457b1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read tenant-wide print settings without a signed-in user.\",\"displayName\":\"Read tenant-wide print settings\",\"id\":\"b5991872-94cf-4652-9765-29535087c6d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update print task definitions without a signed-in - user.\\u00A0\",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. \",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles in your organization, without a signed-in user.\",\"displayName\":\"Read privileged @@ -16286,6 +12359,14 @@ interactions: the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.\",\"displayName\":\"Manage all programs\",\"id\":\"60a901ed-09f7-4aa5-a16e-7dd3d6f9de36\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"displayName\":\"Compute Purview + policies at tenant scope\",\"id\":\"e5a76501-dbb0-492c-ab55-5d09e8837263\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"displayName\":\"Compute Purview + policies for an individual user\",\"id\":\"fe696d63-5e1f-4515-8232-cccc316903c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and query your provisioning log activities, without a signed-in + user.\",\"displayName\":\"Read all provisioning log data\",\"id\":\"091937d3-3e38-47a1-8649-b2f99d3035f1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProvisioningLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, without a signed-in user.\",\"displayName\":\"Read all @@ -16296,9 +12377,12 @@ interactions: and write all certificate based authentication configurations\",\"id\":\"a2b63618-5350-462d-b1b3-ba6eb3684e26\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PublicKeyInfrastructure.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows an app to read all question and answers, without a signed-in user.\",\"displayName\":\"Read all Question and Answers \",\"id\":\"ee49e170-1dd1-4030-b44c-61ad6e98f743\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"QnA.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get direct access to real-time enriched data in a meeting, without + a signed-in user.\",\"displayName\":\"Access real-time enriched data in a + meeting as an app\",\"id\":\"abafe00f-ea87-4c63-b8a8-0e7bb0a88144\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read - Records Management configuration,\\u00A0labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + Records Management configuration, labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read and write Records Management configuration, labels and policies\",\"id\":\"eb158f57-df43-4751-8b21-b8932adb3d34\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -16441,6 +12525,17 @@ interactions: the app to read your organization\u2019s security events without a signed-in user. Also allows the app to update editable properties in security events.\",\"displayName\":\"Read and update your organization\u2019s security events\",\"id\":\"d903a879-88e0-4c09-b0c9-82f6a1333f84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all the identity security available identity accounts without + a signed-in user.\",\"displayName\":\"Read all identity security available + identity accounts\",\"id\":\"c5bc96f5-b4a1-4cfc-8189-d5f0d772278f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write identity security available actions without a signed-in + user.\",\"displayName\":\"Read and perform all identity security available + actions\",\"id\":\"af2bf46f-7bf1-4be3-8bad-e17e279e8462\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read sensors window auditing configuration without a signed-in + user\",\"displayName\":\"Read sensors window auditing configuration\",\"id\":\"58971758-9844-4fe4-9fba-7e4ce7a659bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write sensors window auditing configuration without a + signed-in user\",\"displayName\":\"Read and write sensors window auditing + configuration\",\"id\":\"4f1f0deb-08d1-4ffb-8cca-21dfc362b7c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the identity security health issues without a signed-in user.\",\"displayName\":\"Read all identity security health issues\",\"id\":\"f8dcd971-5d83-4e1e-aa95-ef44611ad351\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesHealth.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write identity security health issues without a signed-in @@ -16458,7 +12553,17 @@ interactions: the app to read all security incidents, without a signed-in user.\",\"displayName\":\"Read all security incidents\",\"id\":\"45cc0394-e837-488b-a098-1918f48d186c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write to all security incidents, without a signed-in user.\",\"displayName\":\"Read - and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, without + a signed-in user.\",\"displayName\":\"Evaluate sensitivity labels\",\"id\":\"57f0b71b-a759-45a0-9a0f-cc099fbd9a44\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to evaluate all sensitivity label.\",\"displayName\":\"Evaluate labels + tenant scope.\",\"id\":\"986fa56a-6680-4aac-af09-4d1765376739\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels application + scope.\",\"id\":\"3b8e7aad-f6e3-4299-83f8-6fc6a5777f0b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels tenant scope.\",\"id\":\"e46a01e9-b2cf-4d89-8424-bcdc6dd445ab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabels.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all Sentiment Survey, without a signed-in user. \",\"displayName\":\"Export + all Sentiment Survey\",\"id\":\"84fa35c1-f997-4c1c-894c-bb52108cfbbf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SentimentSurvey.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Exchange service activity, without a signed-in user.\",\"displayName\":\"Read all Exchange service activity\",\"id\":\"2b655018-450a-4845-81e7-d603b1ebffdb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServiceActivity-Exchange.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Microsoft 365 Web service activity, without a signed-in @@ -16477,6 +12582,12 @@ interactions: principal endpoints\",\"id\":\"5256681e-b7f6-40c0-8447-2d9db68797a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to update service principal endpoints\",\"displayName\":\"Read and update service principal endpoints\",\"id\":\"89c8469c-83ad-45f7-8ff2-6e3d4285709e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, without a signed-in user.\",\"displayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"a0521574-fcd8-4742-b29c-f796df57ea70\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, without a signed-in user.\",\"displayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"id\":\"f5fa52a5-b9ab-4dc3-885e-9e5b4a67068e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the tenant-level settings of SharePoint and OneDrive, without a signed-in user.\",\"displayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"83d4163d-a2d8-4d3b-9695-4ae3ca98f888\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointTenantSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -16487,10 +12598,18 @@ interactions: all users' short notes\",\"id\":\"0c7d31ec-31ca-4f58-b6ec-9950b6b0de69\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, edit, and delete all the short notes without a signed-in user.\",\"displayName\":\"Read, create, edit, and delete all users' short - notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your organization's sign-in identifiers, without a signed-in + user.\",\"displayName\":\"Read all sign-in identifiers\",\"id\":\"28e1fe78-598f-4df4-b55e-18bf34218925\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's sign-in identifiers, without + a signed-in user.\",\"displayName\":\"Read and write all sign-in identifiers\",\"id\":\"7fc588a2-ea2d-4d1f-bcf7-33c324b149b8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to archive/reactivate site collections without a signed in user.\",\"displayName\":\"Archive/reactivate Site Collections without a signed - in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the application to create site collections without a signed in user. Upon + creation the application will be granted Sites.Selected(application) + FullControl + to the newly created site.\",\"displayName\":\"Create Site Collections without + a signed in user.\",\"id\":\"80819dd8-2b3b-4551-a1ad-2700fc44f533\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to have full control of all site collections without a signed in user.\",\"displayName\":\"Have full control of all site collections\",\"id\":\"a82116e5-55eb-4c41-a434-62fe8a61c773\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.FullControl.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create or delete document libraries and lists in all site collections @@ -16502,19 +12621,21 @@ interactions: site collections without a signed in user.\",\"displayName\":\"Read and write items in all site collections\",\"id\":\"9492366f-7969-46a4-8d15-ed1a20078fff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to access a subset of site collections without a signed in - user.\\u00A0\\u00A0The specific site collections and the permissions granted - will be configured in SharePoint Online.\",\"displayName\":\"Access selected - site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. The specific site collections and the permissions granted will be configured + in SharePoint Online.\",\"displayName\":\"Access selected site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read SPIFFE trust domains and child resources\",\"id\":\"dcdfc277-41fd-4d68-ad0c-c3057235bd8e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read and write SPIFFE - trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0subject\\u00A0rights - requests\\u00A0without a\\u00A0signed-in\\u00A0user.\",\"displayName\":\"Read\\u00A0all - subject\\u00A0rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0and\\u00A0write - subject\\u00A0rights requests\\u00A0without a signed in user.\",\"displayName\":\"Read\\u00A0and\\u00A0write\\u00A0all - subject\\u00A0rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to modify Viva Engage storylines, read all storylines properties, + update storyline properties, and delete storyline properties without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage storylines\",\"id\":\"6eff534b-699e-44d9-af61-a4182f0ec37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Storyline.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read subject rights requests without a signed-in user.\",\"displayName\":\"Read + all subject rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write subject rights requests without a signed in user.\",\"displayName\":\"Read + and write all subject rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read Azure AD synchronization information, without a signed-in user.\",\"displayName\":\"Read all Azure AD synchronization data.\",\"id\":\"5ba43d2f-fa88-4db2-bd1c-a67c5f0fb1ce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Synchronization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to configure the Azure AD synchronization service, without @@ -16533,7 +12654,7 @@ interactions: the app to create, read, update and delete all users\u2019 tasks and task lists in your organization, without a signed-in user\",\"displayName\":\"Read and write all users\u2019 tasks and tasklists\",\"id\":\"44e666d1-d276-445b-a5fc-8815eeb81d55\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Tasks.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create teams without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create teams without a signed-in user. \",\"displayName\":\"Create teams\",\"id\":\"23fc2474-f741-46ce-8465-674744c5c361\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Get a list of all teams, without a signed-in user.\",\"displayName\":\"Get a list of all teams\",\"id\":\"2280dda6-0bfd-44ee-a2f4-cb867cfc4c1e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read @@ -16704,7 +12825,7 @@ interactions: user.\",\"displayName\":\"Read Teams devices\",\"id\":\"0591bafd-7c1c-4c30-a2a5-2b9aacb1dfe8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the app to read and write the management data for Teams devices, without a signed-in user.\",\"displayName\":\"Read and write Teams devices\",\"id\":\"79c02f5b-bd4f-4713-bc2c-a8a4a66e127b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read\\u00A0tags in Teams\\u00A0without a signed-in user.\",\"displayName\":\"Read + the app to read tags in Teams without a signed-in user.\",\"displayName\":\"Read tags in Teams\",\"id\":\"b74fd6c4-4bde-488e-9695-eeb100e4907f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write tags in Teams without a signed-in user.\",\"displayName\":\"Read and write tags in Teams\",\"id\":\"a3371ca5-911d-46d6-901c-42c8c7a937d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -16721,8 +12842,8 @@ interactions: the app to read all the indicators for your organization, without a signed-in user.\",\"displayName\":\"Read all threat indicators\",\"id\":\"197ee4e9-b993-4066-898f-d6aecc55125b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), without a signed-in user. \\u00A0It cannot update - any threat indicators it does not own.\",\"displayName\":\"Manage threat indicators + (read, update and delete), without a signed-in user. It cannot update any + threat indicators it does not own.\",\"displayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"21792b6c-c986-4ffc-85de-df9da54b52fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read threat intelligence information, such as indicators, observations, and and articles, without a signed in user.\",\"displayName\":\"Read all Threat @@ -16754,6 +12875,9 @@ interactions: the app to read and write secondary mail addresses for all users, without a signed-in user.\",\"displayName\":\"Read and write all secondary mail addresses for users\",\"id\":\"280d0935-0796-47d1-8d26-273470a3f17a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-Mail.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all users without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + users\",\"id\":\"a94a502d-0281-4d15-8cd2-682ac9362c4c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write password profiles and reset passwords for all users, without a signed-in user.\",\"displayName\":\"Read and write all password profiles and reset user passwords\",\"id\":\"cc117bb9-00cf-4eb8-b580-ea2a878fe8f7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-PasswordProfile.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -16798,6 +12922,41 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods\",\"displayName\":\"Read and write all users' authentication methods \",\"id\":\"50483e42-d915-4231-9639-7fdb7fd190e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read email methods of all users in your organization, without a + signed-in user. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' email methods\",\"id\":\"a1e58be0-1095-422b-b067-73434bd7d40f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write email methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' email methods\",\"id\":\"e8ecb853-1435-4a49-95ba-ec5b31b11672\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read external authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' external authentication methods\",\"id\":\"d2c4289f-9f95-40da-ad43-eeb1506f0db7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write external authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' external + authentication methods\",\"id\":\"c7a22c2e-5b01-4129-8159-6c8be2c78f16\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' HardwareOATH authentication methods\",\"id\":\"7b544555-7811-49ff-8223-a56be870e33a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write HardwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + HardwareOATH authentication methods\",\"id\":\"7e9ebcc1-90aa-4471-8051-e68d6b4e9c89\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Microsoft authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' Microsoft authentication methods\",\"id\":\"a9c5f16e-e5ca-4e33-89ad-903fcfc01c23\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Microsoft Authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Microsoft Authentication methods\",\"id\":\"c833c349-a1ab-4b6d-94a2-fa9a8674420c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read passkey authentication methods of all users in your organization, without a signed-in user. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read @@ -16807,6 +12966,68 @@ interactions: to see secret information like passwords, or to sign-in or otherwise use the authentication methods\",\"displayName\":\"Read and write all users' passkey authentication methods\",\"id\":\"0400e371-7db1-4338-a269-96069eb65227\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read password authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' password authentication methods\",\"id\":\"8d2c17ff-b93d-40d5-9def-d843680509cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write password authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' password + authentication methods\",\"id\":\"f6d38dfd-ec08-4995-8f07-23e929df0936\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read phone authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' phone authentication methods\",\"id\":\"f529a223-ea70-43ec-b268-5012de2fbaa2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write phone methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' phone methods\",\"id\":\"6e85d483-7092-4375-babe-0a94a8213a58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read platform credentials methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' platform credentials methods\",\"id\":\"07c0b1e4-15bd-442f-834b-30f8291388d1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write platform credentials methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' platform + credentials methods\",\"id\":\"1a87acf4-a9ca-4576-a974-452ea265d5f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read QR authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' QR methods\",\"id\":\"9a45bc50-cddd-4ebe-bd9c-4f2eacf646ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write QR authentication methods of all users in + your organization, without a signed-in user. This does not allow the app to + see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' QR methods\",\"id\":\"4869299f-18c3-40c8-98f2-222657e67db1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' SoftwareOATH methods\",\"id\":\"a6b423df-a0c8-411d-a809-a4a5985d2939\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write SoftwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + SoftwareOATH methods\",\"id\":\"787442d4-3c6e-4e99-aa95-8ccca20a48ff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read all users' Temporary Access + Pass methods\",\"id\":\"bf82209c-b22b-4747-ac88-a68be99032cf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Temporary Access Pass authentication methods + of all users in your organization, without a signed-in user. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Temporary Access Pass methods\",\"id\":\"627169a8-8c15-451c-861a-5b80e383de5c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization, without a signed-in user. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"displayName\":\"Read all users' Windows Hello methods\",\"id\":\"9b8dd4c7-8cca-4ef5-a34a-9c2c75fcc934\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Windows Hello authentication methods of + all users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Windows Hello authentication methods\",\"id\":\"f14eee8a-713e-45aa-8223-2ab74632db1a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send, read, update and delete user\u2019s notifications, without a signed-in user.\",\"displayName\":\"Deliver and manage all user's notifications\",\"id\":\"4e774092-a092-48d1-90bd-baad67c7eb47\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserNotification.ReadWrite.CreatedByApp\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all users' shift schedule preferences without a signed-in @@ -16814,7 +13035,9 @@ interactions: the app to manage all users' shift schedule preferences without a signed-in user.\",\"displayName\":\"Read and write all user shift preferences\",\"id\":\"d1eec298-80f3-49b0-9efb-d90e224798ac\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserShiftPreferences.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all user teamwork settings without a signed-in user.\",\"displayName\":\"Read - all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"This + role can read Verified Id profiles in a tenant.\",\"displayName\":\"Read Verified + Id profiles\",\"id\":\"e227c591-dd64-4a8a-a033-816167f7c938\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read virtual appointments for all users, without a signed-in user. The app must also be authorized to access an individual user\u2019s data by the online meetings application access policy.\",\"displayName\":\"Read @@ -16837,6 +13060,8 @@ interactions: the app to read and write all Windows update deployment settings for the organization without a signed-in user.\",\"displayName\":\"Read and write all Windows update deployment settings\",\"id\":\"7dd1be58-6e76-4401-bf8d-31d1e8180d5b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WindowsUpdates.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read workforce integrations without a signed-in user.\",\"displayName\":\"Read + workforce integrations\",\"id\":\"f10b94b9-37d1-4c88-8b7e-bf75a1152d39\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage workforce integrations to synchronize data from Microsoft Teams Shifts, without a signed-in user.\",\"displayName\":\"Read and write workforce integrations\",\"id\":\"202bf709-e8e6-478e-bcfd-5d63c50b68e3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"info\":{\"logoUrl\":null,\"marketingUrl\":null,\"privacyStatementUrl\":null,\"supportUrl\":null,\"termsOfServiceUrl\":null},\"keyCredentials\":[],\"oauth2PermissionScopes\":[{\"adminConsentDescription\":\"Allows @@ -16874,6 +13099,158 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership on your behalf.\",\"userConsentDisplayName\":\"Read and write administrative units\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent cards and their skills in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"id\":\"73ea6732-992c-4292-98f7-9feff18d3ade\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent cards and their skills on your behalf.\",\"userConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"value\":\"AgentCard.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent cards in Agent Registry\",\"id\":\"b0f726a8-0fa2-4ce2-937b-fd17a446261f\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + on your behalf.\",\"userConsentDisplayName\":\"Read and write agent cards + in Agent Registry\",\"value\":\"AgentCard.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent card manifests in your organization's Agent Registry + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read agent + card manifests in Agent Registry\",\"id\":\"ada96a26-9579-4c29-a578-c3482a765716\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write agent card manifests in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"id\":\"80151b1a-1c31-4846-ae0d-c79939ee13d1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read collections and their membership in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + collections in Agent Registry\",\"id\":\"fa50be38-fdff-469c-96dc-ef5fce3c64bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read collections and their membership on your behalf.\",\"userConsentDisplayName\":\"Read + collections in Agent Registry\",\"value\":\"AgentCollection.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read global collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + global collection in Agent Registry\",\"id\":\"b14924c8-87f1-438a-81f2-dc370ba2f45d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read global collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + global collection in Agent Registry\",\"value\":\"AgentCollection.Read.Global\"},{\"adminConsentDescription\":\"Allows + the app to read quarantined collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"id\":\"43acfda3-daf3-4aa4-955d-b051d0024e82\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read quarantined collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"value\":\"AgentCollection.Read.Quarantined\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write collections in Agent Registry\",\"id\":\"6d8a7002-a05e-4b95-a768-0e6f0badc6c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write collections + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update global collection and manage its membership in + your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write global collection in Agent Registry\",\"id\":\"c001dd65-8a6b-4349-ab0c-4e8a410d28d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update global collection and manage its membership on + your behalf.\",\"userConsentDisplayName\":\"Read and write global collection + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Global\"},{\"adminConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write quarantined collection in Agent Registry\",\"id\":\"ae331cc9-9f51-484b-a90b-124f2e4a6398\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write quarantined + collection in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Quarantined\"},{\"adminConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"adminConsentDisplayName\":\"Delete + and restore agent identities\",\"id\":\"c8ee41e5-35e7-4fe9-8ecb-93493adcac5b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"userConsentDisplayName\":\"Delete + and restore agent identities\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"adminConsentDisplayName\":\"Enable + or disable agent identities\",\"id\":\"a501206a-e364-4a3f-be6e-765806d0e323\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"userConsentDisplayName\":\"Enable + or disable agent identities\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identities.\",\"adminConsentDisplayName\":\"Read + all agent identities\",\"id\":\"5e850691-d86a-4b24-bfa6-8a52fb37a0c1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identities.\",\"userConsentDisplayName\":\"Read + all agent identities\",\"value\":\"AgentIdentity.Read.All\"},{\"adminConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Read and write all agent identities\",\"id\":\"4a4facd5-0ee1-49b7-a5b2-fdcc2491685e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"userConsentDisplayName\":\"Read and write all agent identities\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"id\":\"75b5feb2-bfe7-423f-907d-cc505186f246\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprints.\",\"id\":\"8fc15edd-ba24-494e-9bf6-d38e1b7ba8fd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f12ba1f6-afb7-4685-9a30-21e8c3f551d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"adminConsentDisplayName\":\"Read + all agent identity blueprints\",\"id\":\"26512dc8-1364-4e9f-867c-6d8b22a9e162\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"userConsentDisplayName\":\"Read + all agent identity blueprints\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"id\":\"4fd490fc-1467-48eb-8a4c-421597ab0402\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"id\":\"6f677aa9-25af-49a5-8a1d-628dc7f0d009\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint branding\",\"id\":\"60960e31-67cb-4d25-9d36-4922109923a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint branding\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"00dcd896-6b23-42ce-b5de-c58493c05e22\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"2c70023e-a482-4af2-9ff1-51ded53e6bad\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"adminConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"id\":\"e7475e0a-9f02-43e2-a250-5c2ea74ccd0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"userConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"id\":\"88c856a2-de61-4632-b2d4-ac503cbc8dd2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"id\":\"bf2cad6a-9082-438a-9a63-95fa2687af65\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"ad57fb88-4658-4fd6-ab7d-e43184b08e4e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"52a417d9-0b3c-4466-9a3b-66960de73d74\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"adminConsentDescription\":\"Allows + the app to read agent instances and their related collections in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"id\":\"4c3c738a-2df0-4877-bf4a-f796950ff34c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent instances and their related collections on your behalf.\",\"userConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"value\":\"AgentInstance.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"id\":\"fc79e324-da24-497a-b5ec-e7de08320375\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read terms of use agreements on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all terms of use agreements\",\"id\":\"af2819c9-df71-4dd3-ade7-4d7c9dc653b7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read terms of use agreements on your behalf.\",\"userConsentDisplayName\":\"Read @@ -16953,6 +13330,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read applications\",\"id\":\"c79f8feb-a9db-4090-85f9-90d820caa0eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read applications and service principals on your behalf.\",\"userConsentDisplayName\":\"Read applications\",\"value\":\"Application.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update all apps in your organization, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read and update all apps\",\"id\":\"0586a906-4d89-4de8-b3c8-1aacdcc0c679\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update all apps in your organization, on your behalf.\",\"userConsentDisplayName\":\"Read + and update all apps\",\"value\":\"Application.ReadUpdate.All\"},{\"adminConsentDescription\":\"Allows the app to create, read, update and delete applications and service principals on behalf of the signed-in user. Does not allow management of consent grants.\",\"adminConsentDisplayName\":\"Read and write all applications\",\"id\":\"bdfbf15f-ee85-4955-8675-146e8e5296b5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -16991,7 +13372,15 @@ interactions: create, and update attack simulation data of an organization\",\"id\":\"27608d7c-2c66-4cad-a657-951d575f5a60\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, and update attack simulation and training data for an organization on your behalf.\",\"userConsentDisplayName\":\"Read, create, - and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Read + activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"id\":\"16786f81-40d2-4116-bb26-d1a753bf0b20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"value\":\"AuditActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"a78fd341-0672-4792-a8ae-a5925b2546eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"value\":\"AuditActivity.Write\"},{\"adminConsentDescription\":\"Allows the app to read and query your audit log activities, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read audit log data\",\"id\":\"e4c9e354-4dc5-45b8-9e7c-e1393b0b1a20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and query your audit log activities, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -17190,8 +13579,8 @@ interactions: delegate and shared calendars.\",\"adminConsentDisplayName\":\"Read user and shared calendars\",\"id\":\"2b9c4092-424d-4249-948d-b43879977640\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read events in all calendars that you can access, including delegate - and shared calendars.\\u00A0\",\"userConsentDisplayName\":\"Read calendars\\u00A0you - can access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows + and shared calendars. \",\"userConsentDisplayName\":\"Read calendars you can + access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows the app to read events in user calendars, except for properties such as body, attachments, and extensions.\",\"adminConsentDisplayName\":\"Read basic details of user calendars\",\"id\":\"662d75ba-a364-42ad-adee-f5f880ea4878\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -17210,6 +13599,10 @@ interactions: organization you have permissions to access. This includes delegate and shared calendars.\",\"userConsentDisplayName\":\"Read and write to your and shared calendars\",\"value\":\"Calendars.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read all AI Insights for calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all AI Insights for calls. \",\"id\":\"e24bdaf9-83f8-468b-a144-c681ccb6caf4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read all AI Insights for calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all AI Insights for calls.\",\"value\":\"CallAiInsights.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read delegation settings of you\",\"adminConsentDisplayName\":\"Read delegation settings\",\"id\":\"305b375b-00fe-48bf-81bc-e8d78954c1b6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows you to read your delegation settings\",\"userConsentDisplayName\":\"Read your @@ -17222,6 +13615,14 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read call event data\",\"id\":\"43431c03-960e-400f-87c6-8f910321dca3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read call event information for an organization on your behalf.\",\"userConsentDisplayName\":\"Read call event data\",\"value\":\"CallEvents.Read\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all recordings of calls. \",\"id\":\"63d31bd6-bcf5-40ca-8283-ba4130a66405\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all recordings of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all recordings of calls.\",\"value\":\"CallRecordings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all transcripts of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all transcripts of calls. \",\"id\":\"fbace248-5d8e-441c-85ca-cc19221a69a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all transcripts of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all transcripts of calls.\",\"value\":\"CallTranscripts.Read.All\"},{\"adminConsentDescription\":\"Allows to read all Change Management items.\",\"adminConsentDisplayName\":\"Read Change Management items\",\"id\":\"4628dff5-c33e-4fde-b17a-b64e7acb1bed\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows to read all Change Management items.\",\"userConsentDisplayName\":\"Read Change @@ -17278,7 +13679,7 @@ interactions: and write the names, descriptions, and settings of channels\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to create chats on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create chats\",\"id\":\"38826093-1258-4dea-98f0-00003be2b8d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create chats on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create chats on your behalf. \",\"userConsentDisplayName\":\"Create chats\",\"value\":\"Chat.Create\"},{\"adminConsentDescription\":\"Allows the app to delete and recover deleted chats, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Delete and recover deleted chats\",\"id\":\"bb64e6fc-6b6d-4752-aea0-dd922dbba588\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -17376,6 +13777,12 @@ interactions: the app to read app consent requests for your approval, and deny or approve those request on your behalf.\",\"userConsentDisplayName\":\"Read and write consent requests\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of contacts a user + has permissions to, including their own and shared contacts.\",\"adminConsentDisplayName\":\"Read + and update the on-premises sync behavior of contacts\",\"id\":\"1e4c6c41-0803-4f52-85ef-0a5d63ad8670\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of contacts you have permissions + to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of your own and shared contacts\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read user contacts. \",\"adminConsentDisplayName\":\"Read user contacts \",\"id\":\"ff74d97f-43af-4b68-9f2a-b77ee6968c5d\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read contacts in your contact folders.\",\"userConsentDisplayName\":\"Read @@ -17395,6 +13802,38 @@ interactions: the app to read, update, create, and delete contacts you have permissions to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read and write to your and shared contacts\",\"value\":\"Contacts.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"adminConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"id\":\"7e2467d1-f874-46bb-828e-24cb06b29d3f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"userConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"value\":\"Content.Process.All\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"adminConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"id\":\"1d787a13-f750-4ad6-875a-fcbd2725596b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"userConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"value\":\"Content.Process.User\"},{\"adminConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"62c55b2f-a2b1-4312-8385-be57afd901b4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"value\":\"ContentActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"id\":\"948caae6-152a-48cd-a746-4844af30e8e9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"value\":\"ContentActivity.Write\"},{\"adminConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Delete Microsoft 365 Copilot conversations\",\"id\":\"ed510a02-ac32-45f9-93e6-04864f7f7e47\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on your behalf.\",\"userConsentDisplayName\":\"Delete + Microsoft 365 Copilot conversations\",\"value\":\"CopilotConversation.Delete\"},{\"adminConsentDescription\":\"Allows + the user to read the packages information\",\"adminConsentDisplayName\":\"Read + all packages information\",\"id\":\"a2dcfcb9-cbe8-4d42-812d-952e55cf7f3f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read packages information.\",\"userConsentDisplayName\":\"Read + all packages information\",\"value\":\"CopilotPackages.Read.All\"},{\"adminConsentDescription\":\"Allows + the user to read and update the packages information\",\"adminConsentDisplayName\":\"Read + and update all packages information\",\"id\":\"e9c5fd18-ac15-43dd-9f5c-6f9611dd5604\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update packages information.\",\"userConsentDisplayName\":\"Read + and update all packages information\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide copilot limited mode setting on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organization-wide copilot limited mode setting\",\"id\":\"aeb2982d-632d-4155-b533-18756ab6fdd8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -17413,46 +13852,45 @@ interactions: within the Azure AD ecosystem on your behalf.\",\"userConsentDisplayName\":\"Read cross-tenant basic information\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export external user data (e.g. customer content or system-generated - logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + the current tenant on behalf of the signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"id\":\"cb1ba48f-d22b-4325-a07f-74135a62ee41\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"value\":\"CrossTenantUserProfileSharing.Read\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export their data\",\"id\":\"759dcd16-3c90-463c-937e-abf89f991c18\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export external user data (e.g. customer content or system-generated logs), + with the current tenant on your behalf. It also permits the application to + export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export data\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export and remove external user data (e.g. customer content - or system-generated logs), associated with the current tenant on behalf of - the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant - user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the current tenant on behalf of the signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated + logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + shared cross-tenant user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export or delete their data\",\"id\":\"64dfa325-cbf8-48e3-938d-51224a0cac01\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's custom authentication extensions on behalf @@ -17709,6 +14147,16 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and update Azure AD recommendations\",\"id\":\"f37235e8-90a0-4189-93e2-e55b53867ccd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update Azure AD recommendations, on your behalf.\",\"userConsentDisplayName\":\"Read and update Azure AD recommendations\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"adminConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"33203a2a-a761-40f0-8a7c-a7e74a9f8ac6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"userConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"adminConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"id\":\"857bd3ea-490e-4284-88a7-a7de1893b6ee\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"userConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all domain properties on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read domains.\",\"id\":\"2f9ee017-59c1-4f1d-9472-bd5529a7b311\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all domain properties on your behalf.\",\"userConsentDisplayName\":\"Read @@ -17754,7 +14202,7 @@ interactions: your assignments without grades\",\"value\":\"EduAssignments.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments and their grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments and their grades\",\"id\":\"2f233e90-164b-4501-8bce-31af2559a2d3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view and modify your assignments on your behalf including \\u00A0grades.\",\"userConsentDisplayName\":\"View + the app to view and modify your assignments on your behalf including grades.\",\"userConsentDisplayName\":\"View and modify your assignments and grades\",\"value\":\"EduAssignments.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments without grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments without grades\",\"id\":\"2ef770a1-622a-47c4-93ee-28d6adbed3a0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -17778,13 +14226,13 @@ interactions: your school, class and user information\",\"value\":\"EduRoster.Read\"},{\"adminConsentDescription\":\"Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization's roster and a limited subset of properties - about users to be read on behalf of the user.\\u00A0Includes name, status, - education role, email address and photo.\",\"adminConsentDisplayName\":\"Read - a limited subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view minimal \\u00A0information about both schools and classes - in your organization and education-related information about you and other - users on your behalf.\",\"userConsentDisplayName\":\"View a limited subset - of your school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows + about users to be read on behalf of the user. Includes name, status, education + role, email address and photo.\",\"adminConsentDisplayName\":\"Read a limited + subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to view minimal information about both schools and classes in your + organization and education-related information about you and other users on + your behalf.\",\"userConsentDisplayName\":\"View a limited subset of your + school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write the structure of schools and classes in an organization's roster and education-specific information about users to be read and written on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' @@ -17796,6 +14244,23 @@ interactions: users' email address\",\"id\":\"64a6cdd6-aab1-4aaf-94b8-3cc8405e90d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your primary email address\",\"userConsentDisplayName\":\"View your email address\",\"value\":\"email\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage conversations, and to read their properties on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Viva + Engage conversations\",\"id\":\"c55541d9-2cdd-4fad-8ead-0c08fae5b0c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage conversations\",\"value\":\"EngagementConversation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage conversations\",\"id\":\"ebbfd079-1634-4640-8618-68b19ebbed1d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + communities\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage Teams QA conversations, and to read their properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + Viva Engage Teams QA conversations\",\"id\":\"58c5819e-29bd-4400-ad52-82cd82a63fbd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage Teams QA + conversations\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"adminConsentDescription\":\"Allows the app to list a user's Viva Engage roles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's Viva Engage roles \",\"id\":\"9f1da0fc-345c-4dfb-bab5-5215a073a417\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to list your Viva Engage roles, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -17848,6 +14313,10 @@ interactions: user via Exchange Web Services\",\"id\":\"9769c687-087d-48ac-9cb3-c37dde652038\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app full access to your mailboxes on your behalf.\",\"userConsentDisplayName\":\"Access your mailboxes\",\"value\":\"EWS.AccessAsUser.All\"},{\"adminConsentDescription\":\"Allows + the app to search the email message trace on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Search + the email message trace\",\"id\":\"b2e7d27e-14e7-41ad-bb15-a88ceb9c3e90\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to search the email message trace on your behalf.\",\"userConsentDisplayName\":\"Search + the email message trace\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all external connections on behalf of a signed-in user. The signed-in user must be an administrator.\",\"adminConsentDisplayName\":\"Read all external connections\",\"id\":\"a38267a5-26b6-4d76-9493-935b7599116b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -17958,6 +14427,26 @@ interactions: file storage containers and the permissions granted will be configured in Microsoft 365 by the developer of each container type.\",\"userConsentDisplayName\":\"Access selected file storage containers\",\"value\":\"FileStorageContainer.Selected\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container types on behalf of the signed + in user. The user must be a SharePoint Embedded Admin or Global Admin.\",\"adminConsentDisplayName\":\"Manage + file storage container types on behalf of the signed in user\",\"id\":\"8e6ec84c-5fcd-4cc7-ac8a-2296efc0ed9b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container types on your behalf. You + must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container types on your behalf\",\"value\":\"FileStorageContainerType.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container type registrations on behalf + of the signed in user. The user must be a SharePoint Embedded Admin or Global + Admin.\",\"adminConsentDisplayName\":\"Manage file storage container type + registrations on behalf of the signed in user\",\"id\":\"c319a7df-930e-44c0-a43b-7e5e9c7f4f24\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container type registrations on your + behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container type registrations on your behalf\",\"value\":\"FileStorageContainerTypeReg.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on behalf of the signed in user. The user must be a SharePoint Embedded Admin + or Global Admin.\",\"adminConsentDisplayName\":\"Access selected file storage + container type registrations.\",\"id\":\"d1e4f63a-1569-475c-b9b2-bdc140405e38\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on your behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Access + selected file storage container type registrations.\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"adminConsentDescription\":\"Allows the app to read and write financials data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write financials data\",\"id\":\"f534bf13-55d4-45a9-8f3c-c92fe64d6131\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write financials data on your behalf.\",\"userConsentDisplayName\":\"Read @@ -17979,6 +14468,11 @@ interactions: access to.\",\"adminConsentDisplayName\":\"Read and write group conversations\",\"id\":\"302bcbb5-855a-4e49-ae20-94a331b0281e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write group conversations that the signed-in user has access to.\",\"userConsentDisplayName\":\"Read and write group conversations\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of groups on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of groups\",\"id\":\"37e00479-5776-4659-aecf-4841ec5d590a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of groups on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of groups\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access.\",\"adminConsentDisplayName\":\"Read @@ -18007,6 +14501,20 @@ interactions: the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.\",\"userConsentDisplayName\":\"Read and write group memberships\",\"value\":\"GroupMember.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + group settings that user can access\",\"id\":\"2eb2bc92-94ef-4c6b-b4ab-2a09bc975e0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on your behalf.\",\"userConsentDisplayName\":\"Read all group settings that + user can access\",\"value\":\"GroupSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all group settings that user can access\",\"id\":\"c1691a6d-99e2-4cfa-b4b5-9e4d67dc0f36\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all group settings + that user can access\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all scenario health monitoring alerts\",\"adminConsentDisplayName\":\"Read all scenario health monitoring alerts\",\"id\":\"74b4ff32-4917-4536-a66d-38a4861e6220\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all scenario health monitoring alerts, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -18044,13 +14552,24 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risk event information\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include confirming risk event detections.\\u00A0\",\"adminConsentDisplayName\":\"Read - and write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + confirming risk event detections. \",\"adminConsentDisplayName\":\"Read and + write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on your behalf.\\u00A0Update operations include confirming - risk event detections.\\u00A0\",\"userConsentDisplayName\":\"Read and write - risk event information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include confirming risk + event detections. \",\"userConsentDisplayName\":\"Read and write risk event + information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read risky agents information\",\"id\":\"3215c57f-3faa-4295-95c2-6f14a5bc6124\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read risky agents information\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on behalf of the signed-in user. Update operations include + dismissing risky agents.\",\"adminConsentDisplayName\":\"Read and write risky + agents information\",\"id\":\"d343bdeb-db6a-4e06-97da-9dafc2d61c60\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on your behalf. Update operations include dismissing + risky agents.\",\"userConsentDisplayName\":\"Read and write risky agents information\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all identity risky service principal information for your organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity risky service principal information\",\"id\":\"ea5c4ab0-5a73-4f35-8272-5d5337884e5d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -18072,13 +14591,12 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risky user information\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write - risky user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write risky + user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on your behalf.\\u00A0Update operations include dismissing - risky users.\",\"userConsentDisplayName\":\"Read and write identity risky - user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include dismissing risky + users.\",\"userConsentDisplayName\":\"Read and write identity risky user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's user flows, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity user flows\",\"id\":\"2903d63d-4611-4d43-99ce-a33f3f52e343\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's user flows, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -18185,20 +14703,21 @@ interactions: the app to read learning content in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning content\",\"id\":\"ea4c1fd9-6a9f-4432-8e5d-86e06cc0da77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read learning content in the organization's directory, on your - behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on your behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Manage learning content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on your + behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read data for the learning provider in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning - provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0data\\u00A0for\\u00A0the - learning\\u00A0provider\\u00A0in\\u00A0the organization's\\u00A0directory, + provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read data for the learning provider in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Read learning provider\",\"value\":\"LearningProvider.Read\"},{\"adminConsentDescription\":\"Allows the app to create, update, read, and delete data for the learning provider - in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0create, - update, read, and delete\\u00A0data\\u00A0for\\u00A0the learning\\u00A0provider\\u00A0in\\u00A0the - organization's\\u00A0directory, on your behalf.\",\"userConsentDisplayName\":\"Manage + in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage + learning provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, update, read, and delete data for the learning provider + in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Manage learning provider\",\"value\":\"LearningProvider.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read data for the learner's self-initiated courses in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -18275,6 +14794,24 @@ interactions: \ The specific lists and the permissions granted will be configured in SharePoint Online.\",\"userConsentDisplayName\":\"Access selected Lists, on behalf of the signed-in user\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in user mailboxes, on behalf of the signed-in user. Does not include + permission to send mail.\",\"adminConsentDisplayName\":\"Read and write the + user's mail, including modifying existing non-draft mails\",\"id\":\"f3af82f6-18e0-4a41-8dc8-a03c11854a8d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in your mailboxes, on your behalf. Does not include permission to send + mail.\",\"userConsentDisplayName\":\"Read and write your mail, including modifying + existing non-draft mails\",\"value\":\"Mail-Advanced.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails a user has permission to access, on behalf of the signed-in + user. This includes their own and shared mail. Does not include permission + to send mail.\",\"adminConsentDisplayName\":\"Read and write all mail the + user can access, including modifying existing non-draft mails\",\"id\":\"bebf0bb6-2ff3-4295-a17d-f3561da294fb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails you have permission to access, on your behalf. This includes + your own mail and shared mail. Does not include permission to send mail.\",\"userConsentDisplayName\":\"Read + and write all mail you can access, including modifying existing non-draft + mails\",\"value\":\"Mail-Advanced.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to read the signed-in user's mailbox.\",\"adminConsentDisplayName\":\"Read user mail \",\"id\":\"570282fd-fa5c-430d-a7fd-fc8dc98a9dca\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read email in your mailbox.\",\"userConsentDisplayName\":\"Read @@ -18308,8 +14845,7 @@ interactions: mail\",\"id\":\"5df07973-7d5d-46ed-9847-1271055cbd51\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, update, create, and delete mail you have permission to access, including your own and shared mail. Does not allow the app to send mail on - your behalf.\",\"userConsentDisplayName\":\"Read and write mail\\u00A0you - can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + your behalf.\",\"userConsentDisplayName\":\"Read and write mail you can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to send mail as users in the organization.\",\"adminConsentDisplayName\":\"Send mail as a user \",\"id\":\"e383f46e-2787-4529-855e-0e479a3ffac0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you.\",\"userConsentDisplayName\":\"Send mail as you @@ -18318,6 +14854,15 @@ interactions: mail on behalf of others\",\"id\":\"a367ab51-6b49-43bf-a716-a1fb06d2a174\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you or on-behalf of someone else.\",\"userConsentDisplayName\":\"Send mail on behalf of others or yourself\",\"value\":\"Mail.Send.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read user's UserConfiguration objects, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Read user's UserConfiguration objects\",\"id\":\"dce2e6fc-0f4b-40da-94e2-14b4477f3d92\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + your UserConfiguration objects\",\"value\":\"MailboxConfigItem.Read\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete user's UserConfiguration objects, + on behalf of the the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write user's UserConfiguration objects\",\"id\":\"7d461784-7715-4b09-9f90-91a6d8722652\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + and write your UserConfiguration objects\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read the user's mailbox folders, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's mailbox folders\",\"id\":\"52dc2051-4958-4636-8f2a-281d39c6981c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read @@ -18326,6 +14871,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write a user's mailbox folders\",\"id\":\"077fde41-7e0b-4c5b-bcd1-e9d743a30c80\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read and write your mailbox folders\",\"value\":\"MailboxFolder.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to export the user's mailbox items, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Export a user's mailbox items\",\"id\":\"58d3e7fa-3ce9-4a0c-9baa-0971f64709d9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export your mailbox items, on your behalf\",\"userConsentDisplayName\":\"Export + your mailbox items\",\"value\":\"MailboxItem.Export\"},{\"adminConsentDescription\":\"Allows the app to backup, restore, and modify mailbox items on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Allows the app to perform backup and restore of mailbox items\",\"id\":\"df96e8a0-f4e1-4ecf-8d83-a429f822cbd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -18484,8 +15033,8 @@ interactions: user's online meeting artifacts\",\"value\":\"OnlineMeetingArtifact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all recordings of online meetings, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all recordings of online meetings.\",\"id\":\"190c2bb6-1fdd-4fec-9aa2-7d571b5e1fe3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all recordings of online meetings, on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read - all recordings of online meetings.\\u00A0\",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of online meetings, on your behalf. \",\"userConsentDisplayName\":\"Read + all recordings of online meetings. \",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read online meeting details on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read user's online meetings\",\"id\":\"9be106e1-f4e3-4df5-bdff-e4bc531cbe43\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read online meeting details on your behalf.\",\"userConsentDisplayName\":\"Read @@ -18525,19 +15074,18 @@ interactions: app to read your basic profile information.\",\"userConsentDisplayName\":\"Sign in as you\",\"value\":\"openid\"},{\"adminConsentDescription\":\"Allows the app to read the organization and related resources, on behalf of the signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read the organization and related resources, on your behalf.\\u00A0Related + user. Related resources include things like subscribed skus and tenant branding + information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.\",\"userConsentDisplayName\":\"Read organization information\",\"value\":\"Organization.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and write the organization and related resources, on behalf - of the signed-in user.\\u00A0Related resources include things like subscribed - skus and tenant branding information.\",\"adminConsentDisplayName\":\"Read - and write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + of the signed-in user. Related resources include things like subscribed skus + and tenant branding information.\",\"adminConsentDisplayName\":\"Read and + write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the organization and related resources, on your - behalf.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"userConsentDisplayName\":\"Read and write organization - information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf. Related resources include things like subscribed skus and tenant branding + information.\",\"userConsentDisplayName\":\"Read and write organization information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read the organizational branding information, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organizational branding information\",\"id\":\"9082f138-6f02-4f3a-9f4d-5f3c2ce5c688\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -18550,10 +15098,10 @@ interactions: behalf.\",\"userConsentDisplayName\":\"Read and write organizational branding information\",\"value\":\"OrganizationalBranding.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all organizational contacts on behalf of the signed-in user. - \\u00A0These contacts are managed by the organization and are different from - a user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational + \ These contacts are managed by the organization and are different from a + user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational contacts\",\"id\":\"08432d1b-5911-483c-86df-7980af5cdee0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all organizational contacts on your behalf.\\u00A0 These contacts + the app to read all organizational contacts on your behalf. These contacts are managed by the organization and are different from your personal contacts.\",\"userConsentDisplayName\":\"Read organizational contacts\",\"value\":\"OrgContact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide apps and services settings on behalf of @@ -18697,6 +15245,11 @@ interactions: your organization's policies\",\"id\":\"572fea84-0151-49b2-9301-11cb16974376\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's policies on your behalf.\",\"userConsentDisplayName\":\"Read your organization's policies\",\"value\":\"Policy.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read the authentication method policies, on behalf of the signed-in + user. \",\"adminConsentDisplayName\":\"Read authentication method policies\",\"id\":\"a6ff13ac-1851-4993-8ca9-a671d70de2d5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the authentication method policies for your tenant, on your + behalf.\",\"userConsentDisplayName\":\"Read your authentication method policies + \",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows the app to read your organization's conditional access policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization's conditional access policies\",\"id\":\"633e0fce-8c58-4cfb-9495-12bbd5a24f7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -18745,8 +15298,8 @@ interactions: on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication flow policies\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"adminConsentDescription\":\"Allows the app to read and write the authentication method policies, on behalf of - the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write - authentication method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the signed-in user. \",\"adminConsentDisplayName\":\"Read and write authentication + method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the authentication method policies for your tenant, on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication method policies \",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows @@ -18769,12 +15322,19 @@ interactions: request policy\",\"id\":\"4d135e65-66b8-41a8-9f8b-081452c91774\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's consent request policy on your behalf.\",\"userConsentDisplayName\":\"Read and write consent request policy\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"adminConsentDescription\":\"Allows - the app to read and write your organization's cross tenant access policies - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and - write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's cross tenant access policies on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's cross tenant access policies\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write your organization's M365 cross tenant access capabilities\",\"id\":\"9ef7463f-1d39-406f-89ea-3483a4645e1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's + M365 cross tenant access capabilities\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"adminConsentDescription\":\"Allows the app to read and write your organization's device configuration policies on behalf of the signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -18878,29 +15438,29 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write print connectors\",\"id\":\"79ef9967-7d59-4213-9c64-4b10687637d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and write print connectors on your behalf.\",\"userConsentDisplayName\":\"Read and write print connectors\",\"value\":\"PrintConnector.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to create (register) printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to create (register) printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows + the application to create (register) printers on behalf of the signed-in user. + \",\"adminConsentDisplayName\":\"Register printers \",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to create (register) printers on your behalf. \",\"userConsentDisplayName\":\"Register + printers \",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register, + printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Register, read, update, and unregister printers\",\"id\":\"93dae4bd-43a1-4a23-9a1a-92957e1d9121\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on your behalf.\\u00A0\\u00A0\",\"userConsentDisplayName\":\"Register, - read, update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows - the application to read printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + printers on your behalf. \",\"userConsentDisplayName\":\"Register, read, + update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows + the application to read printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printers\",\"id\":\"3a736c8a-018e-460a-b60c-863b2683e8bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printers on your behalf. \",\"userConsentDisplayName\":\"Read printers\",\"value\":\"Printer.Read.All\"},{\"adminConsentDescription\":\"Allows - the application to read and update printers on behalf of the signed-in user.\\u00A0Does - not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read + the application to read and update printers on behalf of the signed-in user. + Does not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read and update printers\",\"id\":\"89f66824-725f-4b8f-928e-e1c5258dc565\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printers on your behalf.\\u00A0Does not - allow creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read + the application to read and update printers on your behalf. Does not allow + creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read and update printers\",\"value\":\"Printer.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to read printer shares on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + the application to read printer shares on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printer shares\",\"id\":\"ed11134d-2f3f-440d-a2e1-411efada2502\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the application to read printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printer shares on your behalf. \",\"userConsentDisplayName\":\"Read printer shares\",\"value\":\"PrinterShare.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read basic information about printer shares on behalf of the signed-in user. Does not allow reading access control information.\",\"adminConsentDisplayName\":\"Read @@ -18908,8 +15468,8 @@ interactions: the application to read basic information about printer shares on your behalf.\",\"userConsentDisplayName\":\"Read basic information about printer shares\",\"value\":\"PrinterShare.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update printer shares on behalf of the signed-in - user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + user. \",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to read and update printer shares on your behalf. \",\"userConsentDisplayName\":\"Read and update printer shares\",\"value\":\"PrinterShare.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to create print jobs on behalf of the signed-in user and upload document content to print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Create @@ -18923,10 +15483,10 @@ interactions: the application to read the metadata and document content of print jobs that you created.\",\"userConsentDisplayName\":\"Read your print jobs\",\"value\":\"PrintJob.Read\"},{\"adminConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read - print jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read print + jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows + your behalf. \",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of user's print jobs\",\"id\":\"6a71a747-280f-4670-9ca0-a9cbf882b274\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -18934,10 +15494,10 @@ interactions: not allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of your print jobs\",\"value\":\"PrintJob.ReadBasic\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs on behalf of the signed-in - user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of print jobs\",\"id\":\"04ce8d60-72ce-4867-85cf-6d82f36922f3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read the metadata of print jobs on your behalf. Does not + allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of print jobs\",\"value\":\"PrintJob.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Read @@ -18946,11 +15506,11 @@ interactions: jobs that you created.\",\"userConsentDisplayName\":\"Read and update your print jobs\",\"value\":\"PrintJob.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + jobs on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read and write print jobs\",\"id\":\"036b9544-e8c5-46ef-900a-0646cc42b271\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read and update - print jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + jobs on your behalf. \",\"userConsentDisplayName\":\"Read and update print + jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of user's print jobs\",\"id\":\"6f2d22f2-1cb6-412c-a17c-3336817eaa82\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -18958,10 +15518,10 @@ interactions: Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of your print jobs\",\"value\":\"PrintJob.ReadWriteBasic\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs on behalf of - the signed-in user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + the signed-in user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of print jobs\",\"id\":\"3a0db2f6-0d2a-4c19-971b-49109b19ad3d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read and update the metadata of print jobs on your behalf. + Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of print jobs\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read tenant-wide print settings on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read tenant-wide print settings\",\"id\":\"490f32fd-d90f-4dd7-a601-ff6cdc1a3f6c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -19013,7 +15573,7 @@ interactions: groups, storage, compute) on behalf of the signed-in users.\",\"adminConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"id\":\"a84a9652-ffd3-496e-a991-22ba5529156a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to request and manage time-based assignment and just-in-time elevation - of user privileges to manage \\u00A0your Azure resources (like your subscriptions, + of user privileges to manage your Azure resources (like your subscriptions, resource groups, storage, compute) on your behalf.\",\"userConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"value\":\"PrivilegedAccess.ReadWrite.AzureResources\"},{\"adminConsentDescription\":\"Allows the app to read time-based assignment schedules for access to Azure AD groups, @@ -19077,6 +15637,22 @@ interactions: the app to read, update and perform action on programs and program controls that you have access to.\",\"userConsentDisplayName\":\"Manage programs that you can access\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"adminConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"id\":\"98f5a27a-539a-48bc-a597-f78e9e1e76bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"userConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"value\":\"ProtectionScopes.Compute.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"adminConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"id\":\"4fc04d16-a9fc-4c5e-8da4-79b6c33638a4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"userConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"value\":\"ProtectionScopes.Compute.User\"},{\"adminConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read provisioning log data\",\"id\":\"95aec97b-cf27-4a8d-a67d-42f60b5b38ef\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on your behalf.\",\"userConsentDisplayName\":\"Read + provisioning log data\",\"value\":\"ProvisioningLog.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -19097,12 +15673,18 @@ interactions: all Questions and Answers that the user can access.\",\"id\":\"f73fa04f-b9a5-4df9-8843-993ce928925e\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read all question and answer sets that you can access.\",\"userConsentDisplayName\":\"Read all Questions and Answers that you can access.\",\"value\":\"QnA.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Access real-time enriched + data in a meeting\",\"id\":\"db5d5bae-0c9e-444e-9390-8a5fea98c253\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on your + behalf.\",\"userConsentDisplayName\":\"Access real-time enriched data in a + meeting\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read - Records Management configuration,\\u00A0labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + Records Management configuration, labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.\",\"userConsentDisplayName\":\"Read Records - Management configuration,\\u00A0labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow + Management configuration, labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write Records Management configuration, labels, and policies\",\"id\":\"f2833d75-a4e6-40ab-86d4-6dfe73c97605\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -19213,11 +15795,11 @@ interactions: assignments.\",\"userConsentDisplayName\":\"Read role management data for all RBAC providers\",\"value\":\"RoleManagement.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - behalf of the signed-in user.\\u00A0 This includes reading Cloud PC role definitions + behalf of the signed-in user. This includes reading Cloud PC role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"id\":\"9619b88a-8a25-48a7-9571-d23be0337a79\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - your behalf.\\u00A0 This includes reading Cloud PC role definitions and role - assignments.\",\"userConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows + your behalf. This includes reading Cloud PC role definitions and role assignments.\",\"userConsentDisplayName\":\"Read + Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows the app to read the role-based access control (RBAC) settings for your company's directory, on behalf of the signed-in user. This includes reading M365 Defender role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read @@ -19383,6 +15965,16 @@ interactions: like deleting an email, on your behalf.\",\"userConsentDisplayName\":\"Read metadata, detection details, and execute remediation actions on emails in your organization\",\"value\":\"SecurityAnalyzedMessage.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all Security Copilot signed-in user's resources on behalf + of the signed-in user\",\"adminConsentDisplayName\":\"Read all Security Copilot + resources for the signed-in user\",\"id\":\"84499c31-ac2e-44d3-a0cf-a6c386d4dfe8\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Read + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write Security Copilot resources owned by the signed-in + user on their behalf.\",\"adminConsentDisplayName\":\"Read and write individually + owned Security Copilot resources of the signed-in user\",\"id\":\"206291b0-2167-47a7-a640-6cdc1df710ba\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to write Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Write + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization\u2019s security events on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization\u2019s security events\",\"id\":\"64733abd-851e-478a-bffb-e47a14b18235\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -19395,6 +15987,25 @@ interactions: the app to read your organization\u2019s security events on your behalf. Also allows you to update editable properties in security events.\",\"userConsentDisplayName\":\"Read and update your organization\u2019s security events\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all the identity security available identity accounts\",\"adminConsentDisplayName\":\"Read + identity security available identity accounts\",\"id\":\"3e9ed69a-a48e-473c-8b97-413016703a37\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all the identity security available identity accounts on your + behalf.\",\"userConsentDisplayName\":\"Read identity security available identity + accounts\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write identity security available actions on behalf of + the signed-in identity.\",\"adminConsentDisplayName\":\"Read and perform identity + security available actions\",\"id\":\"818229ce-20e4-47bd-92f4-bc94dbb37a56\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write identity security available actions on your behalf.\",\"userConsentDisplayName\":\"Read + and perform identity security available actions\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the sensors window auditing configuration of the signed in + user\",\"adminConsentDisplayName\":\"Read sensors window auditing configuration\",\"id\":\"8ff90903-1ecb-4f3a-b8b2-42120374ecd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the sensors window auditing configuration on your behalf\",\"userConsentDisplayName\":\"Read + sensors window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration of the + signed in user\",\"adminConsentDisplayName\":\"Read and write sensors window + auditing configuration\",\"id\":\"b810fdb4-8733-43bd-9b37-fddb7215c69f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration on your + behalf\",\"userConsentDisplayName\":\"Read and write window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all the identity security health issues of signed user\",\"adminConsentDisplayName\":\"Read identity security health issues\",\"id\":\"a0d0da43-a6df-4416-b63d-99c79991aae8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all the identity security health issues on your behalf.\",\"userConsentDisplayName\":\"Read @@ -19430,7 +16041,30 @@ interactions: the app to read and write security incidents, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write to incidents\",\"id\":\"128ca929-1a19-45e6-a3b8-435ec44a36ba\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write to all security incidents that you have access to.\",\"userConsentDisplayName\":\"Read - and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Evaluate sensitivity + labels\",\"id\":\"a4633e44-d355-4474-99df-8c2de6b0e39e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on your + behalf.\",\"userConsentDisplayName\":\"Evaluate sensitivity labels\",\"value\":\"SensitivityLabel.Evaluate\"},{\"adminConsentDescription\":\"Allows + the app to evaluate all sensitivity label.\",\"adminConsentDisplayName\":\"Evaluate + labels tenant scope.\",\"id\":\"a42e3c42-b31e-4919-b699-696dca5dc9e7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Evaluate + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Evaluate + labels tenant scope\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + user scope.\",\"id\":\"1aeb73ce-68d7-49b7-913a-eedc80844551\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Get labels + user scope\",\"value\":\"SensitivityLabel.Read\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + app scope.\",\"id\":\"8b377c27-ea19-4863-a948-8a8588c8f2c3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels on behalf of user.\",\"userConsentDisplayName\":\"Get labels on behalf + of user\",\"value\":\"SensitivityLabels.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to export all Sentiment Survey, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Export + all Sentiment Survey\",\"id\":\"df9fd94d-51ff-443d-8f31-ae4dc1b5b8d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export all Sentiment Survey, on your behalf.\",\"userConsentDisplayName\":\"Export + all Sentiment Survey\",\"value\":\"SentimentSurvey.Export.All\"},{\"adminConsentDescription\":\"Allows the app to read all Exchange service activity, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Exchange service activity\",\"id\":\"1fe7aa48-9373-4a47-8df3-168335e0f4c9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all Exchange service activity, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -19474,6 +16108,18 @@ interactions: and update service principal endpoints\",\"id\":\"7297d82c-9546-4aed-91df-3d4f0a9b3ff0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to update service principal endpoints\",\"userConsentDisplayName\":\"Read and update service principal endpoints\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read, + write and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"c608c170-08b5-466b-a8fe-0b4074b01613\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on your behalf.\",\"userConsentDisplayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"adminConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"00dcb678-f9af-4e73-acb1-4f1657364629\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on your behalf.\",\"userConsentDisplayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the tenant-level settings in SharePoint and OneDrive on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"2ef70e10-5bfd-4ede-a5f6-67720500b258\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -19494,6 +16140,23 @@ interactions: create, edit, and delete short notes of the signed-in user\",\"id\":\"328438b7-4c01-4c07-a840-e625a749bb89\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, edit, and delete your short notes.\",\"userConsentDisplayName\":\"Read, create, edit, and delete your short notes\",\"value\":\"ShortNotes.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read SignInIdentifiers\",\"id\":\"458e1edc-1e75-438c-8c7b-c32115c9d373\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on your behalf.\",\"userConsentDisplayName\":\"Read + all sign-in identifiers\",\"value\":\"SignInIdentifier.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all + sign-in identifiers\",\"id\":\"b4673c3c-7b5a-4012-9826-7c7e3c8db6af\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on your + behalf.\",\"userConsentDisplayName\":\"Read and write all sign-in identifiers\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"adminConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"id\":\"0e2e68e1-3f32-4e10-9281-f749e097fcbe\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"userConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"value\":\"Sites.Create.All\"},{\"adminConsentDescription\":\"Allows the application to have full control of all site collections on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Have full control of all site collections\",\"id\":\"5a54b8b3-347c-476d-8f8e-42d5c7424d29\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -19541,6 +16204,12 @@ interactions: the app to read and write your organization's SPIFFE trust domains and child resources on your behalf.\",\"userConsentDisplayName\":\"Read and write SPIFFE trust domains and child resources\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to modify the Viva Engage storyline and read all storyline properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage storylines\",\"id\":\"fd1d61cb-4e4b-4d15-a6d2-161348681d84\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage storyline items and read all storyline properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + storylines\",\"value\":\"Storyline.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read subject rights requests on behalf of the signed-in user\",\"adminConsentDisplayName\":\"Read subject rights requests\",\"id\":\"9c3af74c-fd0f-4db4-b17a-71939e2a9d77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read subject rights requests on your behalf.\",\"userConsentDisplayName\":\"Read @@ -19593,7 +16262,7 @@ interactions: and write to your and shared tasks\",\"value\":\"Tasks.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to create teams on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create teams\",\"id\":\"7825d5d6-6049-4ce7-bdf6-3b8d53f4bcd0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create teams on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create teams on your behalf. \",\"userConsentDisplayName\":\"Create teams\",\"value\":\"Team.Create\"},{\"adminConsentDescription\":\"Read the names and descriptions of teams, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read the names and descriptions of teams\",\"id\":\"485be79e-c497-4b35-9400-0e3fa7f2a5d4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Read @@ -19938,7 +16607,7 @@ interactions: the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.\",\"userConsentDisplayName\":\"Read term store data\",\"value\":\"TermStore.Read.All\"},{\"adminConsentDescription\":\"Allows - the app to read or modify data that the signed-in user has access to.\\u00A0This + the app to read or modify data that the signed-in user has access to. This includes all sets, groups and terms in the term store.\",\"adminConsentDisplayName\":\"Read and write term store data\",\"id\":\"6c37c71d-f50f-4bff-8fd3-8a41da390140\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read or modify data that you have access to. This includes all @@ -19961,13 +16630,13 @@ interactions: the app to read all the indicators for your organization, on your behalf.\",\"userConsentDisplayName\":\"Read all threat indicators\",\"value\":\"ThreatIndicators.Read.All\"},{\"adminConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on behalf of the signed-in user. \\u00A0It cannot - update any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage + (read, update and delete), on behalf of the signed-in user. It cannot update + any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"91e7d36d-022a-490f-a748-f8e011357b42\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on your behalf. \\u00A0It cannot update any threat - indicators that it is not an owner of.\",\"userConsentDisplayName\":\"Manage - threat indicators this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows + (read, update and delete), on your behalf. It cannot update any threat indicators + that it is not an owner of.\",\"userConsentDisplayName\":\"Manage threat indicators + this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows the app to read threat intelligence information, such as indicators, observations, and articles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all threat intelligence information\",\"id\":\"f266d9c0-ccb9-4fb8-a228-01ac0d8d6627\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -20046,6 +16715,11 @@ interactions: the app to read and write secondary mail addresses for all users, on your behalf.\",\"userConsentDisplayName\":\"Read and write secondary mail addresses for users\",\"value\":\"User-Mail.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of users on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of users\",\"id\":\"7ff9afdd-0cdb-439d-a61c-fea3e9339e89\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of users on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of users\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read and write password profiles and reset passwords for all users, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write password profiles and reset user passwords\",\"id\":\"56760768-b641-451f-8906-e1b8ab31bca7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -20165,6 +16839,152 @@ interactions: does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' authentication methods\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's email authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's email authentication methods\",\"id\":\"12b23cea-90c1-4873-9094-f45c5f290f86\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your email authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your email + authentication methods\",\"value\":\"UserAuthMethod-Email.Read\"},{\"adminConsentDescription\":\"Allows + the app to read email methods of all users in your organization that the signed-in + user has access to. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + all users' email methods\",\"id\":\"76caaf3a-ebdb-40a3-9299-4196e636f290\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read email methods of all users you have access to in your organization. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' email methods\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's email authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's email authentication methods\",\"id\":\"696aa421-62dc-4c99-be16-015b23444089\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your email authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your email authentication methods\",\"value\":\"UserAuthMethod-Email.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write email methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' email methods.\",\"id\":\"074f680f-c89e-45be-880e-5d0642860a1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write email methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' email methods\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's external authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's external authentication methods\",\"id\":\"d1739827-146b-4f7f-b52c-1c509253aa57\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your external authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your external + authentication methods\",\"value\":\"UserAuthMethod-External.Read\"},{\"adminConsentDescription\":\"Allows + the app to read external authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' external authentication + methods\",\"id\":\"cbca9646-4c34-4cea-8e54-9a7088018820\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read external authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' external authentication methods\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's external authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's external authentication methods\",\"id\":\"28c2e8f9-828a-4691-a090-f2f0b7fc07b3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your external authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your external authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write external authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' external methods.\",\"id\":\"9d91805d-0f53-43e3-a0f3-303ad4f3056f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write external authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' external + authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's HardwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's HardwareOATH authentication methods\",\"id\":\"ccd2eb40-8874-44e6-8f96-335908b3cfdb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your HardwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"id\":\"acd68c26-c283-4bf4-8b5c-200fc179bdd5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's HardwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's HardwareOATH authentication methods\",\"id\":\"147ca97b-6686-4849-b37e-09d9b5ad45fc\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your HardwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your HardwareOATH authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' HardwareOATH methods.\",\"id\":\"480643f2-a162-43c5-a670-dc1494fc911b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"f14a567b-3280-4124-95a0-eca86006967e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Microsoft Authenticator authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' Microsoft authentication + methods\",\"id\":\"7b627679-e2fd-4bfd-990e-989e2914d4e6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' Microsoft authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"9f7dfa0c-eb40-42be-8d45-8af4a9219c6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Microsoft Authenticator authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Microsoft Authentication methods.\",\"id\":\"1b7322b2-5cb3-4f13-928f-d7ca97c5fba9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Microsoft + Authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's passkey authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's passkey authentication methods\",\"id\":\"828fcbda-0d26-431d-8bfb-83f217224621\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your passkey authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your passkey + authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read\"},{\"adminConsentDescription\":\"Allows the app to read passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication @@ -20174,6 +16994,14 @@ interactions: to in your organization.This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's passkey authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's passkey authentication methods\",\"id\":\"b2de7db9-10f7-4800-b04c-b5b91e4891d6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your passkey authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use @@ -20184,6 +17012,250 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's password authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's password authentication methods\",\"id\":\"7f0f82c3-de19-4ddc-810d-a2206d7637fd\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your password authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your password + authentication methods\",\"value\":\"UserAuthMethod-Password.Read\"},{\"adminConsentDescription\":\"Allows + the app to read password authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' password authentication + methods\",\"id\":\"4f69a4e2-2aa0-43a7-ad6b-98b4cda1f23f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read password authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' password authentication methods\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's password authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's password authentication methods\",\"id\":\"60cce20d-d41e-4594-b391-84bbf8cc31f3\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your password authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your password authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write password authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' password methods.\",\"id\":\"7f5b683d-df96-4690-a88d-6e336ed6dc7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write password authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' password + authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's phone authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's phone authentication methods\",\"id\":\"43dab3b9-e8b4-424d-8e13-6a2ad2a625fa\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your phone authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your phone + authentication methods\",\"value\":\"UserAuthMethod-Phone.Read\"},{\"adminConsentDescription\":\"Allows + the app to read phone authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' phone authentication + methods\",\"id\":\"20cf4ae1-09b9-4d29-a6f8-43e1820ce60c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read phone authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' phone authentication methods\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's phone authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's phone authentication methods\",\"id\":\"6c4aad61-f76b-46ad-a22c-57d4d3d962af\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your phone authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your phone authentication methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Phone methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' phone methods.\",\"id\":\"48c99302-9a24-4f27-a8a7-acef4debba14\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write phone methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' phone methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's platform credential authentication methods\",\"id\":\"9c694582-e8f2-40e2-8353-fb43e2e0f12a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your platform credential authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.Read\"},{\"adminConsentDescription\":\"Allows + the app to read platform credentials methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' platform credentials + methods\",\"id\":\"5936156c-f89b-4850-997d-026c4e6ce529\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read platform credentials methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' platform credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's platform credential authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's platform credential authentication methods\",\"id\":\"70327f81-b953-43c9-92d3-131c74e4beb8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' platform credentials methods.\",\"id\":\"cb11bf8c-dde1-4504-b6a5-31e1562b0749\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' platform + credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's QR authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's QR authentication methods\",\"id\":\"d6893c31-9187-405c-8dfc-f700c8fc161a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your QR authentication methods. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"userConsentDisplayName\":\"Read your QR authentication + methods\",\"value\":\"UserAuthMethod-QR.Read\"},{\"adminConsentDescription\":\"Allows + the app to read QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' QR methods\",\"id\":\"e4900dfb-ad17-410d-8ddb-7aebd8a6af1a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read QR authentication methods of all users you have access to + in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' QR methods\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's QR authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's QR authentication methods\",\"id\":\"651210da-18ce-4e42-b7db-302ff88e9326\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your QR authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your QR authentication methods\",\"value\":\"UserAuthMethod-QR.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' QR methods.\",\"id\":\"db39086a-da7d-4cbd-9ac0-6816f9a80c95\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' QR methods\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's SoftwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's SoftwareOATH authentication methods\",\"id\":\"247f2733-6e3d-46ff-a904-f5fd58eb0d97\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your SoftwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your SoftwareOATH + authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"id\":\"3e366fa0-3097-4eb6-8294-3028f77eea6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's SoftwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's SoftwareOATH authentication methods\",\"id\":\"16721eb3-4493-4ae1-9542-264d9ffe3ce9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your SoftwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your SoftwareOATH authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' SoftwareOATH methods.\",\"id\":\"5b34c8b5-2396-4b35-b284-83fb6a3e73ce\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' SoftwareOATH + methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"84ded88f-26ba-49d6-b776-efec398de692\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Temporary Access Pass authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Temporary Access Pass methods\",\"id\":\"6976c635-c9c2-41e6-a21d-e6913a155273\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Temporary Access Pass + methods\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"2424436d-902f-4651-a1c7-b3b93147c960\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Temporary Access Pass authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users in your organization that the signed-in user has access to. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write all users' Temporary Access Pass methods.\",\"id\":\"05de4a66-e51a-4312-842a-30c8094698d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users you have access to in your organization. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read and write + all users' Temporary Access Pass methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Windows Hello authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Windows Hello methods\",\"id\":\"efe2b5aa-3a8e-486c-b0be-cc4d185c1b40\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Windows Hello authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your Windows + Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Windows Hello methods\",\"id\":\"ff37d46d-b88a-4e0c-85ee-7e26c37b18eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Windows Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Windows Hello authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Windows Hello authentication methods\",\"id\":\"f11e1db9-d419-4a24-b677-792723ffd727\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Windows Hello authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Windows Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Windows Hello methods.\",\"id\":\"13eae17d-aaa4-47b8-aaee-0eb33c6e2450\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Windows + Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read cloud clipboard data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + cloud clipboard items\",\"id\":\"61e8a09a-087f-4e36-8c8c-1c77c5228017\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your cloud clipboard items.\",\"userConsentDisplayName\":\"Read + cloud clipboard items\",\"value\":\"UserCloudClipboard.Read\"},{\"adminConsentDescription\":\"Allows the app to send, read, update and delete user\u2019s notifications.\",\"adminConsentDisplayName\":\"Deliver and manage user's notifications\",\"id\":\"26e2f3e8-b2a1-47fc-9620-89bb5b042024\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send, read, update and delete your app-specific notifications.\",\"userConsentDisplayName\":\"Deliver @@ -20196,15 +17268,36 @@ interactions: Timeline.\",\"adminConsentDisplayName\":\"Write app activity to users' timeline\",\"id\":\"367492fc-594d-4972-a9b5-0d58c622c91c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to report your app activity information to Microsoft Timeline.\",\"userConsentDisplayName\":\"Write app activity to your timeline\",\"value\":\"UserTimelineActivity.Write.CreatedByApp\"},{\"adminConsentDescription\":\"Allows + the app to read a user's windows settings which are stored in cloud and their + values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + windows settings for all devices\",\"id\":\"77e07bab-1b34-40a5-bb6c-4b197b3f6027\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your windows settings which are stored in cloud and their + values.\",\"userConsentDisplayName\":\"Read your windows settings for all + devices\",\"value\":\"UserWindowsSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write a user's windows settings which are stored in cloud + and their values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write windows settings for all devices\",\"id\":\"dcb1026d-b7e1-4d31-9f61-6724d5140bf9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your windows settings which are stored in cloud + and their values.\",\"userConsentDisplayName\":\"Read and write your windows + settings for all devices\",\"value\":\"UserWindowsSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + Verified Id profiles\",\"id\":\"604b2056-41ed-4c56-aad5-1241d4ef7333\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + Verified Id profiles\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"adminConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + and write Verified Id profiles\",\"id\":\"e4a9cb5e-4767-48f8-9029-decf26a54456\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + and write Verified Id profiles\",\"value\":\"VerifiedId-Profile.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows an application to read virtual appointments for the signed-in user. Only an - organizer or participant user can read their virtual appointments.\\u202F\\u00A0\",\"adminConsentDisplayName\":\"Read + organizer or participant user can read their virtual appointments. \",\"adminConsentDisplayName\":\"Read a user's virtual appointments\",\"id\":\"27470298-d3b8-4b9c-aad4-6334312a3eac\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read virtual appointments on your behalf.\\u202F\\u202F\",\"userConsentDisplayName\":\"Read - your virtual appointments\\u202F\",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows + the app to read virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read + your virtual appointments \",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows an application to read and write virtual appointments for the signed-in user. - Only an organizer or participant user can read and write their virtual appointments.\\u202F\",\"adminConsentDisplayName\":\"Read - and write a user's virtual appointments\\u202F\\u00A0\",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read and write virtual appointments on your behalf.\\u202F\\u00A0\",\"userConsentDisplayName\":\"Read + Only an organizer or participant user can read and write their virtual appointments. + \",\"adminConsentDisplayName\":\"Read and write a user's virtual appointments + \ \",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read and write your virtual appointments\",\"value\":\"VirtualAppointment.ReadWrite\"},{\"adminConsentDescription\":\"Allows an application to send notifications for virtual appointments for the signed-in user.\",\"adminConsentDisplayName\":\"Send notification regarding virtual @@ -20239,11 +17332,20 @@ interactions: workforce integrations\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"passwordCredentials\":[],\"resourceSpecificApplicationPermissions\":[{\"description\":\"Allows the app to read user AI enterprise interactions, without a signed-in user.\",\"displayName\":\"Read user AI enterprise interactions.\",\"id\":\"10d712aa-b4cd-4472-b0ba-6196e04c344f\",\"isEnabled\":true,\"value\":\"AiEnterpriseInteraction.Read.User\"},{\"description\":\"Allows + the teams-app to read all aiInsights for calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all AI Insights for calls + where the Teams application is installed.\",\"id\":\"ff9d3910-ca91-4e7f-843f-d44ab36a961a\",\"isEnabled\":true,\"value\":\"CallAiInsights.Read.Chat\"},{\"description\":\"Allows + the teams-app to read all recordings of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all recordings of calls + where the Teams application is installed.\",\"id\":\"22748df0-bd8c-4626-aad9-6dab421b33e4\",\"isEnabled\":true,\"value\":\"CallRecordings.Read.Chat\"},{\"description\":\"Allows the app to access media streams in calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Access media streams in calls associated with this chat or meeting\",\"id\":\"e716890c-c30a-4ac3-a0e3-551e7d9e8deb\",\"isEnabled\":true,\"value\":\"Calls.AccessMedia.Chat\"},{\"description\":\"Allows the app to join calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Join calls associated with this chat or meeting\",\"id\":\"a01e73f1-94da-4f6d-9b73-02e4ea65560b\",\"isEnabled\":true,\"value\":\"Calls.JoinGroupCalls.Chat\"},{\"description\":\"Allows + the Teams app to read all transcripts of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all transcripts of calls + where the Teams app is installed.\",\"id\":\"7990a5df-4c51-43ea-939c-3e8b18d6ddad\",\"isEnabled\":true,\"value\":\"CallTranscripts.Read.Chat\"},{\"description\":\"Allows the app to create channels in this team, without a signed-in user.\",\"displayName\":\"Create channels in this team\",\"id\":\"65af85d7-62bb-4339-a206-7160fd427454\",\"isEnabled\":true,\"value\":\"Channel.Create.Group\"},{\"description\":\"Allows the app to delete this team's channels, without a signed-in user.\",\"displayName\":\"Delete @@ -20296,10 +17398,16 @@ interactions: and write this chat's settings\",\"id\":\"ed928a9c-7530-496a-a624-4c0a460ab3ed\",\"isEnabled\":true,\"value\":\"ChatSettings.ReadWrite.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's members, without a signed-in user.\",\"displayName\":\"Read this group's members\",\"id\":\"0a8ce3c7-89dd-46cf-b2c3-5ef0064437a8\",\"isEnabled\":true,\"value\":\"Member.Read.Group\"},{\"description\":\"Allows + the app to read this meeting and subscribe to meeting call updates.\",\"displayName\":\"Read + this meeting and subscribe to meeting call updates .\",\"id\":\"f991ed3f-9617-4d8d-b06c-d18d9fcbcf2a\",\"isEnabled\":true,\"value\":\"OnlineMeeting.Read.Chat\"},{\"description\":\"Allows the app to read basic properties, such as name, schedule, organizer, join link, and start or end notifications, of meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read basic properties of meetings associated with this chat\",\"id\":\"eda8d262-4e6e-4ff6-a7ba-a2fb50535165\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadBasic.Chat\"},{\"description\":\"Allows + the app to manage this online meeting, and subscribe to meeting call updates.\",\"displayName\":\"Manage + this meeting and subscribe to meeting call updates.\",\"id\":\"93400bb4-2282-4371-a745-a86d64c966d0\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadWrite.Chat\"},{\"description\":\"Read + attendance reports & attendance records for this webinar or town hall.\",\"displayName\":\"Read + virtual event artifacts\",\"id\":\"c5d06837-8c0d-42fc-9e49-545e3f941261\",\"isEnabled\":true,\"value\":\"OnlineMeetingArtifact.Read.Chat\"},{\"description\":\"Allows the app to send notifications inside meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Send notifications in the meetings associated with this chat\",\"id\":\"d9837fe0-9c31-4faa-8acb-b10874560161\",\"isEnabled\":true,\"value\":\"OnlineMeetingNotification.Send.Chat\"},{\"description\":\"Allows @@ -20309,9 +17417,9 @@ interactions: with this chat\",\"id\":\"6324a770-185c-4b4f-be13-2d9a1668e6eb\",\"isEnabled\":true,\"value\":\"OnlineMeetingParticipant.Read.Chat\"},{\"description\":\"Allows the app to read recordings of the meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read the recordings of the meetings - associated with this chat\\u00A0\",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows + associated with this chat \",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows the app to read transcripts of the meetings associated with this chat, without - a signed-in user.\\u00A0\",\"displayName\":\"Read the transcripts of the meetings + a signed-in user. \",\"displayName\":\"Read the transcripts of the meetings associated with this chat\",\"id\":\"8c477e19-f0f7-45f9-ae72-604f77a599e3\",\"isEnabled\":true,\"value\":\"OnlineMeetingTranscript.Read.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's owners, without a signed-in user.\",\"displayName\":\"Read this group's owners\",\"id\":\"70d5316c-9b27-4057-a650-3b0fe49002ab\",\"isEnabled\":true,\"value\":\"Owner.Read.Group\"},{\"description\":\"Allows @@ -20358,20 +17466,25 @@ interactions: the app to manage this chat's tabs, without a signed-in user.\",\"displayName\":\"Manage this chat's tabs\",\"id\":\"d583f4d7-57da-4b2c-9744-253e9ec3c7be\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Chat\"},{\"description\":\"Allows the app to manage this team's tabs, without a signed-in user.\",\"displayName\":\"Manage - this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"}],\"samlSingleSignOnSettings\":{\"relayState\":null},\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" + this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"},{\"description\":\"Read + information for this webinars or town halls, including schedules, speakers, + and event settings and webinar registrations.\",\"displayName\":\"Read virtual + event details\",\"id\":\"298266a0-fbf7-4804-b988-5a54e61566c8\",\"isEnabled\":true,\"value\":\"VirtualEvent.Read.Chat\"},{\"description\":\"Register + attendees and cancel registrations for this webinar.\",\"displayName\":\"Manage + virtual event registrations\",\"id\":\"0e646cc8-6b07-4030-9a41-a7db4644b4cc\",\"isEnabled\":true,\"value\":\"VirtualEventRegistration-Anon.ReadWrite.Chat\"}],\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" headers: cache-control: - no-cache content-length: - - '550263' + - '676759' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:19 GMT + - Wed, 24 Dec 2025 05:49:04 GMT odata-version: - '4.0' request-id: - - f000449f-5f2e-4921-9a71-75ba7025c5eb + - 114975a3-f7dc-4be4-832e-22e2964dd839 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -20379,7 +17492,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00022E05"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF00018369"}}' x-ms-resource-unit: - '1' status: @@ -20399,9 +17512,9 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/3289ca6d-17dc-43d7-99ab-55c2aa49338a/appRoleAssignments + uri: https://graph.microsoft.com/v1.0/servicePrincipals/562c81c5-d273-4843-9627-c0944d91e825/appRoleAssignments response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#appRoleAssignments","value":[]}' @@ -20413,11 +17526,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:20 GMT + - Wed, 24 Dec 2025 05:49:06 GMT odata-version: - '4.0' request-id: - - 27fe8072-902c-48ab-8d26-543fdb1f6bda + - 4bf6cca7-95ac-4003-bed9-7c6d3dc6b580 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -20425,7 +17538,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00022E03"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF0001836C"}}' x-ms-resource-unit: - '2' status: @@ -20445,7 +17558,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -20454,19 +17567,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -20479,7 +17592,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -20487,17 +17600,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:21 GMT + - Wed, 24 Dec 2025 05:49:07 GMT etag: - '"5"' expires: @@ -20513,11 +17626,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;31 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23988,Microsoft.Compute/LowCostGetResource;29 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A34730070EE14B34A71E2345C3ACCDB1 Ref B: TYO201151006052 Ref C: 2025-04-02T09:37:21Z' + - 'Ref A: 501E86B97C2D43C280E3980C7AB7E264 Ref B: SG2AA1040512025 Ref C: 2025-12-24T05:49:06Z' status: code: 200 message: '' @@ -20535,7 +17648,7 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -20544,19 +17657,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -20569,7 +17682,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -20577,17 +17690,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:22 GMT + - Wed, 24 Dec 2025 05:49:07 GMT etag: - '"5"' expires: @@ -20603,11 +17716,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;30 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23987,Microsoft.Compute/LowCostGetResource;28 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D7333BFB8A484E5185A1AC5B2E67C59C Ref B: TYO201151006054 Ref C: 2025-04-02T09:37:22Z' + - 'Ref A: 87DDC46076604DE2A391556758EDF40C Ref B: SG2AA1040517011 Ref C: 2025-12-24T05:49:07Z' status: code: 200 message: '' @@ -20625,28 +17738,28 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -20659,7 +17772,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -20667,17 +17780,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:23 GMT + - Wed, 24 Dec 2025 05:49:09 GMT etag: - '"5"' expires: @@ -20693,16 +17806,17 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990,Microsoft.Compute/LowCostGetResource;29 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23986,Microsoft.Compute/LowCostGetResource;27 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7239C5740EB046969A66C144F000ECD2 Ref B: TYO201100114021 Ref C: 2025-04-02T09:37:23Z' + - 'Ref A: 84A6D3AB36D144C58BC3BA3E6628A070 Ref B: SG2AA1070303054 Ref C: 2025-12-24T05:49:08Z' status: code: 200 message: '' - request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned"}}' + body: '{"identity": {"userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi": + {}}, "type": "SystemAssigned,UserAssigned"}}' headers: Accept: - application/json @@ -20713,13 +17827,13 @@ interactions: Connection: - keep-alive Content-Length: - - '54' + - '252' Content-Type: - application/json ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -20727,22 +17841,22 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"e1214564-a5a1-47b7-94fc-ac2f909af8f2\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"82cfc56f-e4de-4f41-9f66-7bdee8ad3d43\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -20755,7 +17869,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"6\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -20763,21 +17877,21 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/aa02b72a-3aa9-489e-88f0-213777bfeb3e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834464284695&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=Yl74Q2sPPuaaOfra-62_yyFucU8zrdmRVjQbI4-ig5Faowk6hF3leSgO9hIPUMIF1oPvXbSZTF8vdV5hMQu2KoIRZh26Po3cdeLf6DaKSnRnSrhE-BBcc2hGXgcbgH5kxJ9B343ldd4GhGJjnzMjC6Wk0VK0LE_YfhbJFxZJOG0S91WcKeNSec7_7OTOdk-nTPGiR2niAyxu-y5dHq8yk7yBZKlIrRKGGtNcv6Y2I3QA0VLH88P3qRtNogGiURtnAaFz-93kAW5Lk21PKAG0csxYVaxKroB2n8UFSOgd6AONltWOzmxSfj_RCXd_GwL093Oc4fsyBYcpsKwDEmg4zQ&h=gMpeNFFKJAQUvIN8WP-uMkakCXpLbXqo50ruGpQJbZw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/221ce07f-a255-4b8c-831b-23a8c6f46182?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521510908551&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=SziT9EKfUc3edLZ5B-8ayfsonmhbG_NzBafIouJJCkH_Wlj7NVHxykgXu6eyZDajgdX2mdFGAM3XWmrNs3JJhygzNgjQOnXzNbve3PSQRFiLjF5hEDFONQODT50uIbr2FVxjVYoFdJCGKwg78m3ioeysqAkN1EChW5P8l7wAWpAyUSZp8YAmwDt8BttFEgL9sBsFKS1Bj8Ew1umT5YHAN8jytMK7rWbHri25rWxLUjjqhDZFxst1PDVlG3GCJnphB6rogasxBJ7THdZnCZwKPCsTv02PjqJm1uIeHhWYyQFy4NlLjLlWQQF9AvQacqo5zUohCQe9yvMnLS-EBzbEhw&h=BI-WQkaAWWk0fcX1jsvNcdgX3pQIBZGPnufwCfBEL-k cache-control: - no-cache content-length: - - '3599' + - '3590' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:26 GMT + - Wed, 24 Dec 2025 05:49:11 GMT etag: - '"6"' expires: @@ -20793,15 +17907,15 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/279b5b25-04a6-4253-b06e-34210c233dcf + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/f8393088-db3d-445e-8bf0-daefe5059798 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1496,Microsoft.Compute/UpdateVMResource;10 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 505D02A173604DBD8C3F25617767BDA2 Ref B: TYO201100117025 Ref C: 2025-04-02T09:37:24Z' + - 'Ref A: 54676851AC2A4E20B80A25F91047E885 Ref B: SG2AA1070305023 Ref C: 2025-12-24T05:49:09Z' status: code: 200 message: '' @@ -20819,13 +17933,13 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/aa02b72a-3aa9-489e-88f0-213777bfeb3e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834464284695&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=Yl74Q2sPPuaaOfra-62_yyFucU8zrdmRVjQbI4-ig5Faowk6hF3leSgO9hIPUMIF1oPvXbSZTF8vdV5hMQu2KoIRZh26Po3cdeLf6DaKSnRnSrhE-BBcc2hGXgcbgH5kxJ9B343ldd4GhGJjnzMjC6Wk0VK0LE_YfhbJFxZJOG0S91WcKeNSec7_7OTOdk-nTPGiR2niAyxu-y5dHq8yk7yBZKlIrRKGGtNcv6Y2I3QA0VLH88P3qRtNogGiURtnAaFz-93kAW5Lk21PKAG0csxYVaxKroB2n8UFSOgd6AONltWOzmxSfj_RCXd_GwL093Oc4fsyBYcpsKwDEmg4zQ&h=gMpeNFFKJAQUvIN8WP-uMkakCXpLbXqo50ruGpQJbZw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/221ce07f-a255-4b8c-831b-23a8c6f46182?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521510908551&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=SziT9EKfUc3edLZ5B-8ayfsonmhbG_NzBafIouJJCkH_Wlj7NVHxykgXu6eyZDajgdX2mdFGAM3XWmrNs3JJhygzNgjQOnXzNbve3PSQRFiLjF5hEDFONQODT50uIbr2FVxjVYoFdJCGKwg78m3ioeysqAkN1EChW5P8l7wAWpAyUSZp8YAmwDt8BttFEgL9sBsFKS1Bj8Ew1umT5YHAN8jytMK7rWbHri25rWxLUjjqhDZFxst1PDVlG3GCJnphB6rogasxBJ7THdZnCZwKPCsTv02PjqJm1uIeHhWYyQFy4NlLjLlWQQF9AvQacqo5zUohCQe9yvMnLS-EBzbEhw&h=BI-WQkaAWWk0fcX1jsvNcdgX3pQIBZGPnufwCfBEL-k response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:37:26.0855651+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"aa02b72a-3aa9-489e-88f0-213777bfeb3e\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:49:11.0489488+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"221ce07f-a255-4b8c-831b-23a8c6f46182\"\r\n}" headers: cache-control: - no-cache @@ -20834,7 +17948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:26 GMT + - Wed, 24 Dec 2025 05:49:12 GMT expires: - '-1' pragma: @@ -20848,13 +17962,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/d2ce6c19-4c60-4f1f-ab60-ff79d49303c6 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/836343cf-beed-4cc7-9718-b1d273fe5e75 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14988 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 540B97F10D7A4373BA1FA49AC1A11006 Ref B: TYO201100117025 Ref C: 2025-04-02T09:37:26Z' + - 'Ref A: C6502A109469411DAEE34B9108DBD2CD Ref B: SG2AA1040512036 Ref C: 2025-12-24T05:49:11Z' status: code: 200 message: '' @@ -20872,14 +17986,14 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/aa02b72a-3aa9-489e-88f0-213777bfeb3e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834464284695&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=Yl74Q2sPPuaaOfra-62_yyFucU8zrdmRVjQbI4-ig5Faowk6hF3leSgO9hIPUMIF1oPvXbSZTF8vdV5hMQu2KoIRZh26Po3cdeLf6DaKSnRnSrhE-BBcc2hGXgcbgH5kxJ9B343ldd4GhGJjnzMjC6Wk0VK0LE_YfhbJFxZJOG0S91WcKeNSec7_7OTOdk-nTPGiR2niAyxu-y5dHq8yk7yBZKlIrRKGGtNcv6Y2I3QA0VLH88P3qRtNogGiURtnAaFz-93kAW5Lk21PKAG0csxYVaxKroB2n8UFSOgd6AONltWOzmxSfj_RCXd_GwL093Oc4fsyBYcpsKwDEmg4zQ&h=gMpeNFFKJAQUvIN8WP-uMkakCXpLbXqo50ruGpQJbZw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/221ce07f-a255-4b8c-831b-23a8c6f46182?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521510908551&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=SziT9EKfUc3edLZ5B-8ayfsonmhbG_NzBafIouJJCkH_Wlj7NVHxykgXu6eyZDajgdX2mdFGAM3XWmrNs3JJhygzNgjQOnXzNbve3PSQRFiLjF5hEDFONQODT50uIbr2FVxjVYoFdJCGKwg78m3ioeysqAkN1EChW5P8l7wAWpAyUSZp8YAmwDt8BttFEgL9sBsFKS1Bj8Ew1umT5YHAN8jytMK7rWbHri25rWxLUjjqhDZFxst1PDVlG3GCJnphB6rogasxBJ7THdZnCZwKPCsTv02PjqJm1uIeHhWYyQFy4NlLjLlWQQF9AvQacqo5zUohCQe9yvMnLS-EBzbEhw&h=BI-WQkaAWWk0fcX1jsvNcdgX3pQIBZGPnufwCfBEL-k response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:37:26.0855651+00:00\",\r\n \"endTime\": - \"2025-04-02T09:37:30.2574748+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"aa02b72a-3aa9-489e-88f0-213777bfeb3e\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:49:11.0489488+00:00\",\r\n \"endTime\": + \"2025-12-24T05:49:14.6114396+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"221ce07f-a255-4b8c-831b-23a8c6f46182\"\r\n}" headers: cache-control: - no-cache @@ -20888,7 +18002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:57 GMT + - Wed, 24 Dec 2025 05:49:42 GMT expires: - '-1' pragma: @@ -20902,13 +18016,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b381ec9b-4fcf-4114-8055-d9814ca40d61 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/907f0993-b2d8-48e7-b509-fe2a7591f1a7 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 02B987AF4DC44FD7A066F12312154F55 Ref B: TYO201100117025 Ref C: 2025-04-02T09:37:57Z' + - 'Ref A: 8243C164CEE94CE3B22A5C27BBF64921 Ref B: SG2AA1070306023 Ref C: 2025-12-24T05:49:42Z' status: code: 200 message: '' @@ -20926,7 +18040,7 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -20934,22 +18048,22 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"e1214564-a5a1-47b7-94fc-ac2f909af8f2\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"82cfc56f-e4de-4f41-9f66-7bdee8ad3d43\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -20962,7 +18076,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"6\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -20970,17 +18084,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:57 GMT + - Wed, 24 Dec 2025 05:49:42 GMT etag: - '"6"' expires: @@ -20996,11 +18110,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23977,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: E98E4CFDB36249EDB0D4A3B297DB0BE0 Ref B: TYO201100117025 Ref C: 2025-04-02T09:37:57Z' + - 'Ref A: 77BDD860AC7E4E7D8AF73E4870CF27C6 Ref B: SG2AA1070302029 Ref C: 2025-12-24T05:49:42Z' status: code: 200 message: '' @@ -21018,30 +18132,30 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"e1214564-a5a1-47b7-94fc-ac2f909af8f2\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"82cfc56f-e4de-4f41-9f66-7bdee8ad3d43\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -21054,7 +18168,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"6\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -21062,17 +18176,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:57 GMT + - Wed, 24 Dec 2025 05:49:43 GMT etag: - '"6"' expires: @@ -21088,11 +18202,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23976,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A4F9CBD1A32B4C25800EBC427AB87D54 Ref B: TYO201100114021 Ref C: 2025-04-02T09:37:58Z' + - 'Ref A: 9C0ADD6044B14492941849A38F38F668 Ref B: SG2AA1040518029 Ref C: 2025-12-24T05:49:43Z' status: code: 200 message: '' @@ -21110,7 +18224,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -21118,22 +18232,22 @@ interactions: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"e1214564-a5a1-47b7-94fc-ac2f909af8f2\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"82cfc56f-e4de-4f41-9f66-7bdee8ad3d43\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -21146,7 +18260,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"6\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -21154,17 +18268,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:37:58 GMT + - Wed, 24 Dec 2025 05:49:44 GMT etag: - '"6"' expires: @@ -21180,11 +18294,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23975,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7515187A55144CF9A7667137E5751DE9 Ref B: TYO201151003040 Ref C: 2025-04-02T09:37:59Z' + - 'Ref A: C99E41A1929B4E1A90E842E4932B7825 Ref B: SG2AA1070304042 Ref C: 2025-12-24T05:49:44Z' status: code: 200 message: '' @@ -21202,9 +18316,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/e1214564-a5a1-47b7-94fc-ac2f909af8f2/transitiveMemberOf/microsoft.graph.directoryRole + uri: https://graph.microsoft.com/v1.0/servicePrincipals/82cfc56f-e4de-4f41-9f66-7bdee8ad3d43/transitiveMemberOf/microsoft.graph.directoryRole response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryRoles","value":[]}' @@ -21216,11 +18330,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:00 GMT + - Wed, 24 Dec 2025 05:49:44 GMT odata-version: - '4.0' request-id: - - 4a75c43c-7a10-4e69-93a6-f0ae645f4635 + - 46726174-cf2b-4594-b9ea-575fceddf52c strict-transport-security: - max-age=31536000 transfer-encoding: @@ -21228,7 +18342,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Japan East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"TY1PEPF00008C6C"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF00003E62"}}' x-ms-resource-unit: - '2' status: @@ -21248,14 +18362,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=displayName%20eq%20'Microsoft%20Graph' response: body: - string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"a3efc889-f1b7-4532-9e01-91e32d1039f4\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft - Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":null,\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft - Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"Microsoft.Azure.AgregatorService\",\"https://dod-graph.microsoft.us\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"980db52a-afb6-4420-b0b2-23bf76ce409b\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft + Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":\"2025-11-19T22:28:39Z\",\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft + Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://dod-graph.microsoft.us\",\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"samlSingleSignOnSettings\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.\",\"displayName\":\"Read all access reviews\",\"id\":\"d07a8cc0-3d51-4b77-b3b0-32704d1f69fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AccessReview.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, update, delete and perform actions on access reviews, reviewers, @@ -21272,6 +18386,90 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.\",\"displayName\":\"Read and write all administrative units\",\"id\":\"5eb59dd3-1da2-4329-8733-9dabdc435916\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent cards and their skills in your organization's Agent + Registry without a signed-in user.\",\"displayName\":\"Read all agent cards + in Agent Registry\",\"id\":\"aec9e0a0-6f46-4150-a9f7-05e9e3e87399\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent cards and manage their + skills in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all agent cards in Agent Registry\",\"id\":\"ef566853-42d6-45a5-bed9-5ccb82c98b4f\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent cards that designate the calling app as their + manager and manage their skills in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent cards + in Agent Registry\",\"id\":\"9c4a07db-e0c1-4fb0-8e85-dfd8ae3b8201\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent card manifests in your organization's Agent Registry + without a signed-in user.\",\"displayName\":\"Read all agent card manifests + in Agent Registry\",\"id\":\"3ee18438-e6e5-4858-8f1c-d7b723b45213\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write to all agent card manifests in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent card manifests in Agent Registry\",\"id\":\"228b1a03-f7ca-4348-b50d-e8a547ab61af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write agent card manifests that name it as manager in + your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write managed-by agent card manifests in Agent Registry\",\"id\":\"77f6034c-52f5-4526-9fa1-d55a67e72cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all collections and their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read all collections + in Agent Registry\",\"id\":\"e65ee1da-d1d5-467b-bdd0-3e9bb94e6e0c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all collections and manage their + membership in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all collections in Agent Registry\",\"id\":\"feb31d7d-a227-4487-898c-e014840d07b3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete collections that designate the + calling app as their manager and manage their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + managed-by collections in Agent Registry\",\"id\":\"2e0fb698-9996-479f-926b-ce63f4397829\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create agent identities, even if the app is not the parent agent + identity blueprint.\",\"displayName\":\"Create agent identities without an + agent blueprint parent\",\"id\":\"ad25cc1d-84d8-47df-a08e-b34c2e800819\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create linked agent identities without a signed-in user.\",\"displayName\":\"Create + agent identities linked to itself.\",\"id\":\"4c390976-b2b7-42e0-9187-c6be3bead001\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.CreateAsManager\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to delete and restore agent identities without a signed-in user.\",\"displayName\":\"Delete + and restore agent identities\",\"id\":\"5b016f9b-18eb-41d4-869a-66931914d1c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to enable or disable agent identities without a signed-in user.\",\"displayName\":\"Enable + or disable agent identities\",\"id\":\"69ee0943-4fa4-4ec8-8e52-d12e4ea661a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identities without a signed-in user.\",\"displayName\":\"Read + all agent identities\",\"id\":\"b2b8f011-2898-4234-9092-5059f6c1ebfa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app read, update, and delete agent identities without a signed-in user.\",\"displayName\":\"Read + and write all agent identities\",\"id\":\"dcf7150a-88d4-4fe6-9be1-c2744c455397\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint credentials without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint credentials\",\"id\":\"0510736e-bdfb-4b37-9a1f-89b4a074763a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprints without a signed-in user.\",\"displayName\":\"Create + agent identity blueprints.\",\"id\":\"ea4b2453-ad2d-4d94-9155-10d5d9493ce9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"3f80b699-6405-4e36-a4df-4f19950ff91e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identity blueprints without a signed-in user.\",\"displayName\":\"Read + all agent identity blueprints\",\"id\":\"7547a7d1-36fa-4479-9c31-559a600eaa4f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprints without a signed-in + user.\",\"displayName\":\"Read and write all agent identity blueprints.\",\"id\":\"7fddd33b-d884-4ec0-8696-72cff90ff825\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint authorization and authentication properties + without a signed-in user.\",\"displayName\":\"Update agent identity blueprint + authorization and authentication properties\",\"id\":\"19202363-278e-49c2-bf00-391e2ba00881\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint branding without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint branding\",\"id\":\"76232daa-a1e4-4544-b664-495a006513bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"8959696d-d07e-4916-9b1e-3ba9ce459161\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f86a2dd8-9298-4675-bd78-f5a3572da2d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + enabling or disabling agent identity blueprint principals without a signed-in + user.\",\"displayName\":\"Enable or disable agent identity blueprint principals.\",\"id\":\"a0bdd23d-8b19-4682-b428-574d96527c6f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + reading agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Read + agent identity blueprint principals.\",\"id\":\"9361dea9-4524-493d-941d-f1b65aaf6c7c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprint principals without + a signed-in user.\",\"displayName\":\"Read and write all agent identity blueprint + principals.\",\"id\":\"3bc933bc-8b4d-4cb6-ac49-b73774299250\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent ID user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"b782c9ad-6f2b-4894-a21b-72bf22417f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update ID agent user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"4aa6e624-eee0-40ab-bdd8-f9639038a614\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent instances and their related collections in your + organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + all agent instances in Agent Registry\",\"id\":\"799a4732-85b8-4c67-b048-75f0e88a232b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent instances in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent instances in Agent Registry\",\"id\":\"07abdd95-78dc-4353-bd32-09f880ea43d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete agent instances that designate + the calling app as their manager in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent instances + in Agent Registry\",\"id\":\"782ab1bf-24f1-4c27-8bbc-2006d42792a6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read terms of use agreements, without a signed in user.\",\"displayName\":\"Read all terms of use agreements\",\"id\":\"2f3e6f8c-093b-4c57-a58b-ba5ce494a169\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Agreement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write terms of use agreements, without a signed in user.\",\"displayName\":\"Read @@ -21295,12 +18493,14 @@ interactions: and write the remote desktop security configuration for all apps\",\"id\":\"3be0012a-cc4e-426b-895b-f9c836bf6381\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application-RemoteDesktopConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all applications and service principals without a signed-in user.\",\"displayName\":\"Read all applications\",\"id\":\"9a5d68dd-52b0-4cc2-bd40-abcf44ac3a30\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update all apps in your organization, without a signed-in + user.\",\"displayName\":\"Read and update all apps\",\"id\":\"fc023787-fd04-4e44-9bc7-d454f00c0f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadUpdate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.\",\"displayName\":\"Read and write all applications\",\"id\":\"1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in - user. \\u00A0It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage + user. It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage apps that this app creates or owns\",\"id\":\"18a4783c-866b-4cc7-a460-3d5e5662c884\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without @@ -21315,7 +18515,11 @@ interactions: a signed-in user.\",\"displayName\":\"Read attack simulation data of an organization\",\"id\":\"93283d0a-6322-4fa8-966b-8c121624760d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, and update attack simulation and training data for an organization without a signed-in user.\",\"displayName\":\"Read, create, - and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + activity audit log from the audit store.\",\"displayName\":\"Read activity + audit log from the audit store.\",\"id\":\"99bc85fb-e857-4220-9f8c-3a1c83148d2e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"displayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"f6318678-2713-4bb6-b123-233e7336c1bd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query your audit log activities, without a signed-in user.\",\"displayName\":\"Read all audit log data\",\"id\":\"b0afded3-3588-46d8-8b3d-9842eff778da\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query audit logs from Dynamics CRM workload, without a @@ -21410,6 +18614,8 @@ interactions: basic details of calendars in all mailboxes \",\"id\":\"8ba4a692-bc31-4128-9094-475872af8a53\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete events of all calendars without a signed-in user.\",\"displayName\":\"Read and write calendars in all mailboxes\",\"id\":\"ef54d2bf-783f-4e0f-bca1-3210c0444d99\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all AI Insights for all calls, without a signed-in user.\",\"displayName\":\"Read + all AI Insights for calls.\",\"id\":\"792b782b-7822-4b92-8103-77e44f2f706c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallAiInsights.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read delegation settings of you\",\"displayName\":\"Read delegation settings\",\"id\":\"5aa33e77-b893-495e-bdc5-4bf6f27d42a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallDelegation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write delegation settings of you\",\"displayName\":\"Read @@ -21420,6 +18626,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read all call events\",\"id\":\"1abb026f-7572-49f6-9ddd-ad61cbba181e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallEvents.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all PSTN and direct routing call log data without a signed-in user.\",\"displayName\":\"Read PSTN and direct routing call log data\",\"id\":\"a2611786-80b3-417e-adaa-707d4261a5f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecord-PstnCalls.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call recordings for all calls without a signed-in user.\",\"displayName\":\"Read + all call recordings\",\"id\":\"ce8fb1f1-5e1f-44a0-b102-4ec28454d0dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecordings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read call records for all calls and online meetings without a signed-in user.\",\"displayName\":\"Read all call records\",\"id\":\"45bbb07e-7321-4fd7-a8f6-3ff27e6a81c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecords.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to get direct access to media streams in a call, without a signed-in @@ -21431,13 +18639,15 @@ interactions: meetings in your organization, without a signed-in user.\",\"displayName\":\"Initiate outgoing group calls from the app\",\"id\":\"4c277553-8a09-487b-8023-29ee378d8324\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.InitiateGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to join group calls and scheduled meetings in your organization, without - a signed-in user. \\u00A0The app will be joined with the privileges of a directory + a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.\",\"displayName\":\"Join group calls and meetings as an app\",\"id\":\"f6b49018-60ab-4f81-83bd-22caeabfed2d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to anonymously join group calls and scheduled meetings in your organization, - without a signed-in user. \\u00A0The app will be joined as a guest to meetings - in your organization.\",\"displayName\":\"Join group calls and meetings as - a guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. The app will be joined as a guest to meetings in + your organization.\",\"displayName\":\"Join group calls and meetings as a + guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call transcripts for all calls without a signed-in user.\",\"displayName\":\"Read + all call transcripts\",\"id\":\"4cd61b6d-8692-40bf-9d90-7f38db5e5fce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallTranscripts.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows to read all Change Management items.\",\"displayName\":\"Read Change Management items\",\"id\":\"418dae40-2b65-4819-900c-519a04e4d278\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChangeManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Create channels in any team, without a signed-in user.\",\"displayName\":\"Create @@ -21462,7 +18672,7 @@ interactions: and write the names, descriptions, and settings of all channels, without a signed-in user.\",\"displayName\":\"Read and write the names, descriptions, and settings of all channels\",\"id\":\"243cded2-bd16-4fd6-a953-ff8177894c3d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create chats without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create chats without a signed-in user. \",\"displayName\":\"Create chats\",\"id\":\"d9c48af6-9ad9-47ad-82c3-63757137b9af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to delete and recover deleted chats, without a signed-in user.\",\"displayName\":\"Delete and recover deleted chats\",\"id\":\"9c7abde0-eacd-4319-bf9e-35994b1a1717\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.ManageDeletion.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -21523,26 +18733,42 @@ interactions: the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.\",\"displayName\":\"Read and write all consent requests\",\"id\":\"9f1b81a7-0223-4428-bfa4-0bcb5535f27d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all contacts in all mailboxes + without a signed-in user.\",\"displayName\":\"Read and update the on-premises + sync behavior of contacts\",\"id\":\"c8948c23-e66b-42db-83fd-770b71ab78d2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read contacts in all mailboxes\",\"id\":\"089fe4d0-434a-44c5-8827-41ba8a0b17f5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read and write contacts in all mailboxes\",\"id\":\"6918b873-d17a-4dc1-b314-35f528134491\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"displayName\":\"Process content for + data security, governance and compliance\",\"id\":\"5ad511bf-571c-4ef6-8c3c-85b94b85df98\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"displayName\":\"Process content for data + security, governance and compliance\",\"id\":\"24ceb246-ad29-4680-90b4-3e91ffad15eb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + contents activity audit log from the audit store.\",\"displayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"368425e7-6954-4f5a-9d92-90b75bd580c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"displayName\":\"Upload + content activity audit logs to the audit store.\",\"id\":\"2932e07a-3c29-44e4-bb36-6d0fc176387f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read packages information without a signed-in user.\",\"displayName\":\"Read + all packages information\",\"id\":\"72f0655d-6228-4ddc-8e1b-164973b9213b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update packages information without a signed-in user.\",\"displayName\":\"Read + and update all packages information\",\"id\":\"ed31732f-9495-47ed-ba3b-4ed0948c1c64\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem without a signed-in user.\",\"displayName\":\"Read cross-tenant basic information\",\"id\":\"cac88765-0581-4025-9725-5ebc13f729ee\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export external user data (e.g. customer content or system-generated + with the current tenant without a signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read + all shared cross-tenant user profiles and export their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to list and query any shared user profile information associated + with the current tenant without a signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant user profiles and export - their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export and remove external user data (e.g. customer content - or system-generated logs), for any user associated with the current tenant - without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant - user profiles and export or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's custom authentication extensions without a signed-in user.\",\"displayName\":\"Read all custom authentication extensions\",\"id\":\"88bb2658-5d9e-454f-aacd-a3933e079526\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CustomAuthenticationExtension.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's custom authentication extensions @@ -21668,10 +18894,15 @@ interactions: all Azure AD recommendations\",\"id\":\"ae73097b-cb2a-4447-b064-5d80f6093921\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update all Azure AD recommendations, without a signed-in user.\",\"displayName\":\"Read and update all Azure AD recommendations\",\"id\":\"0e9eea12-4f01-45f6-9b8d-3ea4c8144158\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read internal federation configuration for a domain.\",\"displayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"c0e5a7b0-e8b7-40a7-b8e0-8249e6ea81d5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"displayName\":\"Create, read, update and delete internal + federation configuration for a domain.\",\"id\":\"64d40371-8d58-4270-bc8a-b4a66de36b9a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all domain properties without a signed-in user.\",\"displayName\":\"Read domains\",\"id\":\"dbb9058a-0e50-45d7-ae91-66909b5d4664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all domain properties without a signed in user. - \\u00A0Also allows the app to add, \\u00A0verify and remove domains.\",\"displayName\":\"Read + \ Also allows the app to add, verify and remove domains.\",\"displayName\":\"Read and write domains\",\"id\":\"7e05723c-0bb0-42da-be95-ae9f08a6e53c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.\",\"displayName\":\"Read @@ -21683,16 +18914,16 @@ interactions: Education app settings\",\"id\":\"7c9db06a-ec2d-4e7b-a592-5a1e30992566\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Manage the state and settings of all Microsoft education apps.\",\"displayName\":\"Manage education app settings\",\"id\":\"9bc431c3-b8bc-4a8d-a219-40f10f92eff6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments with grades for all users without - a signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments without grades for all users without + the app to read all class assignments with grades for all users without a + signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all class assignments without grades for all users without a signed-in user.\",\"displayName\":\"Read all class assignments without grades\",\"id\":\"6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments with - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments without - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments with grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments without grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all modules and resources, without a signed-in user.\",\"displayName\":\"Read all class modules and resources\",\"id\":\"6cdb464c-3a03-40f8-900b-4cb7ea1da9c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduCurricula.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all modules and resources, without a signed-in user.\",\"displayName\":\"Read @@ -21721,6 +18952,14 @@ interactions: and write the organization's roster\",\"id\":\"d1808e82-ce13-47af-ae0d-f9b254e6d58a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduRoster.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create Viva Engage conversations without a signed-in user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"e1d2136d-eaaf-427a-a7db-f97dbe847c27\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Migration.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage conversations, and to read their properties without + a signed-in user.\",\"displayName\":\"Read all Viva Engage conversations\",\"id\":\"2c495153-cd0e-41b4-9980-3bcecf1ca22f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create Viva Engage conversations, read all conversation properties, + update conversation properties, and delete conversations without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"bfbd4840-fba0-43a7-93a9-465b687e47d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage Teams QA conversations, and to read their properties + without a signed-in user.\",\"displayName\":\"Read all Viva Engage Teams QA + conversations\",\"id\":\"d746beae-b46e-446e-924a-5b805a5c4467\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to list all Viva Engage roles and role memberships without a signed-in user.\",\"displayName\":\"Read all Viva Engage roles and role memberships\",\"id\":\"30614864-4114-45ef-bdd9-0dd7894a1cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementRole.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to assign Viva Engage role to a user, and remove a Viva Engage role @@ -21737,6 +18976,8 @@ interactions: the app to read or write your organization's authentication event listeners without a signed-in user.\",\"displayName\":\"Read and write all authentication event listeners\",\"id\":\"0edf5e9e-4ce8-468a-8432-d08631d18c43\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EventListener.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to search the email message trace, without a signed-in user.\",\"displayName\":\"Search + the email message trace\",\"id\":\"89b20d8a-76e2-4057-867b-9961f800b9a4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all external connections without a signed-in user.\",\"displayName\":\"Read all external connections\",\"id\":\"1914711b-a1cb-4793-b019-c2ce0ed21b8c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExternalConnection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all external connections without a signed-in user.\",\"displayName\":\"Read @@ -21778,15 +19019,21 @@ interactions: without a signed-in user. The specific file storage containers and the permissions granted to them will be configured in Microsoft 365 by the developer of each container type.\",\"displayName\":\"Access selected file storage containers\",\"id\":\"40dc41bc-0f7e-42ff-89bd-d9516947e474\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainer.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to manage file storage container type registrations without + a signed-in user.\",\"displayName\":\"Access selected file storage container + type registrations\",\"id\":\"2dcc6599-bd30-442b-8f11-90f88ad441dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read all group conversations\",\"id\":\"4f0a8235-6f6f-4ec7-9500-34b452a4a0c3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read and write all group conversations\",\"id\":\"6679c91b-820a-4900-ab47-e97b197a89c4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all groups without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + groups\",\"id\":\"2d9bd318-b883-40be-9df7-63ec4fcdc424\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups without a signed-in user.\",\"displayName\":\"Create groups\",\"id\":\"bf7b1a76-6e77-406b-b258-bf5c7720e98f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read group properties and memberships, and read\\u00A0conversations - for all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read group properties and memberships, and read conversations for + all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by @@ -21797,6 +19044,11 @@ interactions: of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.\",\"displayName\":\"Read and write all group memberships\",\"id\":\"dbaae8cf-10b5-4b86-a4a1-f871c94c6695\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupMember.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + without a signed-in user.\",\"displayName\":\"Read all group settings\",\"id\":\"f3c4f514-c65a-43f5-bfce-1735872258dd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects, without a signed-in user.\",\"displayName\":\"Read + and write all group settings\",\"id\":\"546168c3-1183-4281-9491-fafb24dea37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all scenario health monitoring alerts, without a signed-in user.\",\"displayName\":\"Read all scenario health monitoring alert\",\"id\":\"5183ed5d-b7f8-4e9a-915e-dafb46b9cb62\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"HealthMonitoringAlert.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all scenario monitoring alerts, without a signed-in @@ -21816,7 +19068,11 @@ interactions: information\",\"id\":\"6e472fd1-ad78-48da-a0f0-97ab2c6b769e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event - detections.\\u00A0\",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + detections. \",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read the risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read all risky agents information\",\"id\":\"4aadfb66-d49a-414a-a883-d8c240b6fa33\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read and write risky agents information\",\"id\":\"dca4e4fd-a7cf-4e6f-86d1-d1ec094d766e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all risky service principal information for your organization, without a signed-in user.\",\"displayName\":\"Read all identity risky service principal information\",\"id\":\"607c7344-0eed-41e5-823a-9695ebe1b7b0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyServicePrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -21827,8 +19083,8 @@ interactions: without a signed in user.\",\"displayName\":\"Read all identity risky user information\",\"id\":\"dc5007c0-2d7d-4c42-879c-2dab87571379\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risky user information for your organization - without a signed-in user. \\u00A0Update operations include dismissing risky - users.\",\"displayName\":\"Read and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. Update operations include dismissing risky users.\",\"displayName\":\"Read + and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's user flows, without a signed-in user.\",\"displayName\":\"Read all identity user flows\",\"id\":\"1b0c317f-dd31-4305-9932-259a8b6e8099\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityUserFlow.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's user flows, without a signed-in @@ -21884,9 +19140,9 @@ interactions: directory, without a signed-in user.\",\"displayName\":\"Read and write all assignments\",\"id\":\"236c1cbd-1187-427f-b0f5-b1852454973b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningAssignedCourse.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all learning content in the organization's directory, without - a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - all learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - without a signed-in user.\",\"displayName\":\"Manage all\\u00A0learning\\u00A0content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to manage all learning content in the organization's directory, without + a signed-in user.\",\"displayName\":\"Manage all learning content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read data for all self-initiated courses in the organization's directory, without a signed-in user.\",\"displayName\":\"Read all self-initiated courses\",\"id\":\"467524fc-ed22-4356-a910-af61191e3503\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningSelfInitiatedCourse.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -21926,6 +19182,10 @@ interactions: the application to access a subset of lists without a signed in user. The specific lists and the permissions granted will be configured in SharePoint Online.\",\"displayName\":\"Access selected Lists without a signed in user.\",\"id\":\"23c5a9bd-d900-4ecf-be26-a0689755d9e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all email, including contents + of non-draft emails in user mailboxes, without a signed-in user. Does not + include permission to send mail.\",\"displayName\":\"Read and write mail in + all mailboxes, including modifying existing non-draft mails\",\"id\":\"e118f1da-5c1c-46cf-bff6-8858d786f46f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail-Advanced.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read mail in all mailboxes without a signed-in user.\",\"displayName\":\"Read mail in all mailboxes\",\"id\":\"810c84a8-4a9e-49e6-bf7d-12d183f40d01\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read basic mail properties in all mailboxes without a signed-in @@ -21939,10 +19199,16 @@ interactions: and write mail in all mailboxes\",\"id\":\"e2a3a72e-5f79-4c64-b1b1-878b674786c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send mail as any user without a signed-in user.\",\"displayName\":\"Send mail as any user\",\"id\":\"b633e1c5-b582-4048-a93e-9f11b44c7e96\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Send\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all users' UserConfiguration objects.\",\"displayName\":\"Read + all users' UserConfiguration objects\",\"id\":\"27d9d776-f4d2-426d-80ad-5f22f2b01b0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all users' UserConfiguration objects.\",\"displayName\":\"Read + and write all users' UserConfiguration objects\",\"id\":\"aa6d92d4-b25a-4640-aefe-3e3231e5e736\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read all the users' mailbox folders\",\"id\":\"99280d24-a782-4793-93cc-0888549957f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read and write all the users' mailbox folders\",\"id\":\"fef87b92-8391-4589-9da7-eb93dab7dc8a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to export all the users' mailbox items, without signed-in user.\",\"displayName\":\"Export + all the users' mailbox items\",\"id\":\"937550e9-33a3-494b-88ae-d9cd394b1fbb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to backup, restore, and modify all mailbox items without a signed-in user.\",\"displayName\":\"Allows the app to perform backup and restore for all mailbox items\",\"id\":\"76577085-e73d-4f1d-b26a-85fb33892327\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.ImportExport.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -22020,11 +19286,11 @@ interactions: without a signed in user.\",\"displayName\":\"Manage on-premises published resources\",\"id\":\"0b57845e-aa49-4e6f-8109-ce654fffa618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OnPremisesPublishingProfiles.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organization and related resources, without a signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. Related resources include things like subscribed skus and tenant branding + information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write the organization and related resources, without - a signed-in user.\\u00A0Related resources include things like subscribed skus - and tenant branding information.\",\"displayName\":\"Read and write organization + a signed-in user. Related resources include things like subscribed skus and + tenant branding information.\",\"displayName\":\"Read and write organization information\",\"id\":\"292d869f-3427-49a8-9dab-8c70152b74e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organizational branding information, without a signed-in user.\",\"displayName\":\"Read organizational branding information\",\"id\":\"eb76ac34-0d62-4454-b97c-185e4250dc20\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OrganizationalBranding.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -22095,6 +19361,8 @@ interactions: user.\",\"displayName\":\"Read and write telemetry for all workplace devices.\",\"id\":\"27fc435f-44e2-4b30-bf3c-e0ce74aed618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PlaceDeviceTelemetry.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all your organization's policies without a signed in user.\",\"displayName\":\"Read your organization's policies\",\"id\":\"246dd0d5-5bd0-4def-940b-0421030a5b68\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all authentication method policies for the tenant, without + a signed-in user. \",\"displayName\":\"Read authentication method policies\",\"id\":\"8e3bc81b-d2f3-4b7b-838c-32c88218d2f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's conditional access policies, without a signed-in user.\",\"displayName\":\"Read your organization's conditional access policies\",\"id\":\"37730810-e9ba-4e46-b07e-8ca78d182097\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.ConditionalAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -22120,8 +19388,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read and write authentication flow policies\",\"id\":\"25f85f3c-f66c-4205-8cd5-de92dd7f0cec\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all authentication method policies for the tenant, - without a signed-in user.\\u00A0\",\"displayName\":\"Read and write all authentication - method policies\\u00A0\",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. \",\"displayName\":\"Read and write all authentication + method policies \",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's authorization policy without a signed in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.\",\"displayName\":\"Read @@ -22132,9 +19400,13 @@ interactions: the app to read and write your organization's consent requests policy without a signed-in user.\",\"displayName\":\"Read and write your organization's consent request policy\",\"id\":\"999f8c63-0a38-4f1b-91fd-ed1947bdd1a9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read and write your organization's cross tenant access policies + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"displayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities without a signed-in user.\",\"displayName\":\"Read and write your organization's - cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + M365 cross tenant access capabilities\",\"id\":\"a6325ae7-2b73-4dbd-abed-fbeacfbf8696\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and write your organization's device configuration policies without a signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -22172,7 +19444,7 @@ interactions: includes activity, availability, status note, calendar out-of-office message, time zone and location.\",\"displayName\":\"Read and write presence information for all users\",\"id\":\"83cded22-8297-4ff6-a7fa-e97e9545a259\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Presence.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read printers without a signed-in user.\\u00A0\",\"displayName\":\"Read + the application to read printers without a signed-in user. \",\"displayName\":\"Read printers\",\"id\":\"9709bb33-4549-49d4-8ed9-a8f65e45bb0f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Printer.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update printers without a signed-in user. Does not allow creating (registering) or deleting (unregistering) printers.\",\"displayName\":\"Read @@ -22182,19 +19454,19 @@ interactions: read and update the metadata of print jobs.\",\"displayName\":\"Perform advanced operations on print jobs\",\"id\":\"58a52f47-9e36-4b17-9ebe-ce4ef7f3e6c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the metadata and document content of print jobs without - a signed-in user.\\u00A0\",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read the metadata of print jobs without a signed-in user.\\u00A0Does - not allow access to print job document content.\",\"displayName\":\"Read basic - information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user. \",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read the metadata of print jobs without a signed-in user. + Does not allow access to print job document content.\",\"displayName\":\"Read + basic information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata and document content of print jobs without a signed-in user.\",\"displayName\":\"Read and write print jobs\",\"id\":\"5114b07b-2898-4de7-a541-53b0004e2e13\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata of print jobs without a signed-in - user.\\u00A0Does not allow access to print job document content.\",\"displayName\":\"Read + user. Does not allow access to print job document content.\",\"displayName\":\"Read and write basic information for print jobs\",\"id\":\"57878358-37f4-4d3a-8c20-4816e0d457b1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read tenant-wide print settings without a signed-in user.\",\"displayName\":\"Read tenant-wide print settings\",\"id\":\"b5991872-94cf-4652-9765-29535087c6d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update print task definitions without a signed-in - user.\\u00A0\",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. \",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles in your organization, without a signed-in user.\",\"displayName\":\"Read privileged @@ -22245,6 +19517,14 @@ interactions: the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.\",\"displayName\":\"Manage all programs\",\"id\":\"60a901ed-09f7-4aa5-a16e-7dd3d6f9de36\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"displayName\":\"Compute Purview + policies at tenant scope\",\"id\":\"e5a76501-dbb0-492c-ab55-5d09e8837263\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"displayName\":\"Compute Purview + policies for an individual user\",\"id\":\"fe696d63-5e1f-4515-8232-cccc316903c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and query your provisioning log activities, without a signed-in + user.\",\"displayName\":\"Read all provisioning log data\",\"id\":\"091937d3-3e38-47a1-8649-b2f99d3035f1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProvisioningLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, without a signed-in user.\",\"displayName\":\"Read all @@ -22255,9 +19535,12 @@ interactions: and write all certificate based authentication configurations\",\"id\":\"a2b63618-5350-462d-b1b3-ba6eb3684e26\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PublicKeyInfrastructure.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows an app to read all question and answers, without a signed-in user.\",\"displayName\":\"Read all Question and Answers \",\"id\":\"ee49e170-1dd1-4030-b44c-61ad6e98f743\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"QnA.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get direct access to real-time enriched data in a meeting, without + a signed-in user.\",\"displayName\":\"Access real-time enriched data in a + meeting as an app\",\"id\":\"abafe00f-ea87-4c63-b8a8-0e7bb0a88144\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read - Records Management configuration,\\u00A0labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + Records Management configuration, labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read and write Records Management configuration, labels and policies\",\"id\":\"eb158f57-df43-4751-8b21-b8932adb3d34\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -22400,6 +19683,17 @@ interactions: the app to read your organization\u2019s security events without a signed-in user. Also allows the app to update editable properties in security events.\",\"displayName\":\"Read and update your organization\u2019s security events\",\"id\":\"d903a879-88e0-4c09-b0c9-82f6a1333f84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all the identity security available identity accounts without + a signed-in user.\",\"displayName\":\"Read all identity security available + identity accounts\",\"id\":\"c5bc96f5-b4a1-4cfc-8189-d5f0d772278f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write identity security available actions without a signed-in + user.\",\"displayName\":\"Read and perform all identity security available + actions\",\"id\":\"af2bf46f-7bf1-4be3-8bad-e17e279e8462\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read sensors window auditing configuration without a signed-in + user\",\"displayName\":\"Read sensors window auditing configuration\",\"id\":\"58971758-9844-4fe4-9fba-7e4ce7a659bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write sensors window auditing configuration without a + signed-in user\",\"displayName\":\"Read and write sensors window auditing + configuration\",\"id\":\"4f1f0deb-08d1-4ffb-8cca-21dfc362b7c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the identity security health issues without a signed-in user.\",\"displayName\":\"Read all identity security health issues\",\"id\":\"f8dcd971-5d83-4e1e-aa95-ef44611ad351\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesHealth.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write identity security health issues without a signed-in @@ -22417,7 +19711,17 @@ interactions: the app to read all security incidents, without a signed-in user.\",\"displayName\":\"Read all security incidents\",\"id\":\"45cc0394-e837-488b-a098-1918f48d186c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write to all security incidents, without a signed-in user.\",\"displayName\":\"Read - and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, without + a signed-in user.\",\"displayName\":\"Evaluate sensitivity labels\",\"id\":\"57f0b71b-a759-45a0-9a0f-cc099fbd9a44\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to evaluate all sensitivity label.\",\"displayName\":\"Evaluate labels + tenant scope.\",\"id\":\"986fa56a-6680-4aac-af09-4d1765376739\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels application + scope.\",\"id\":\"3b8e7aad-f6e3-4299-83f8-6fc6a5777f0b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels tenant scope.\",\"id\":\"e46a01e9-b2cf-4d89-8424-bcdc6dd445ab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabels.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all Sentiment Survey, without a signed-in user. \",\"displayName\":\"Export + all Sentiment Survey\",\"id\":\"84fa35c1-f997-4c1c-894c-bb52108cfbbf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SentimentSurvey.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Exchange service activity, without a signed-in user.\",\"displayName\":\"Read all Exchange service activity\",\"id\":\"2b655018-450a-4845-81e7-d603b1ebffdb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServiceActivity-Exchange.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Microsoft 365 Web service activity, without a signed-in @@ -22436,6 +19740,12 @@ interactions: principal endpoints\",\"id\":\"5256681e-b7f6-40c0-8447-2d9db68797a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to update service principal endpoints\",\"displayName\":\"Read and update service principal endpoints\",\"id\":\"89c8469c-83ad-45f7-8ff2-6e3d4285709e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, without a signed-in user.\",\"displayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"a0521574-fcd8-4742-b29c-f796df57ea70\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, without a signed-in user.\",\"displayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"id\":\"f5fa52a5-b9ab-4dc3-885e-9e5b4a67068e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the tenant-level settings of SharePoint and OneDrive, without a signed-in user.\",\"displayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"83d4163d-a2d8-4d3b-9695-4ae3ca98f888\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointTenantSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -22446,10 +19756,18 @@ interactions: all users' short notes\",\"id\":\"0c7d31ec-31ca-4f58-b6ec-9950b6b0de69\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, edit, and delete all the short notes without a signed-in user.\",\"displayName\":\"Read, create, edit, and delete all users' short - notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your organization's sign-in identifiers, without a signed-in + user.\",\"displayName\":\"Read all sign-in identifiers\",\"id\":\"28e1fe78-598f-4df4-b55e-18bf34218925\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's sign-in identifiers, without + a signed-in user.\",\"displayName\":\"Read and write all sign-in identifiers\",\"id\":\"7fc588a2-ea2d-4d1f-bcf7-33c324b149b8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to archive/reactivate site collections without a signed in user.\",\"displayName\":\"Archive/reactivate Site Collections without a signed - in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the application to create site collections without a signed in user. Upon + creation the application will be granted Sites.Selected(application) + FullControl + to the newly created site.\",\"displayName\":\"Create Site Collections without + a signed in user.\",\"id\":\"80819dd8-2b3b-4551-a1ad-2700fc44f533\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to have full control of all site collections without a signed in user.\",\"displayName\":\"Have full control of all site collections\",\"id\":\"a82116e5-55eb-4c41-a434-62fe8a61c773\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.FullControl.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create or delete document libraries and lists in all site collections @@ -22461,19 +19779,21 @@ interactions: site collections without a signed in user.\",\"displayName\":\"Read and write items in all site collections\",\"id\":\"9492366f-7969-46a4-8d15-ed1a20078fff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to access a subset of site collections without a signed in - user.\\u00A0\\u00A0The specific site collections and the permissions granted - will be configured in SharePoint Online.\",\"displayName\":\"Access selected - site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. The specific site collections and the permissions granted will be configured + in SharePoint Online.\",\"displayName\":\"Access selected site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read SPIFFE trust domains and child resources\",\"id\":\"dcdfc277-41fd-4d68-ad0c-c3057235bd8e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read and write SPIFFE - trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0subject\\u00A0rights - requests\\u00A0without a\\u00A0signed-in\\u00A0user.\",\"displayName\":\"Read\\u00A0all - subject\\u00A0rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0and\\u00A0write - subject\\u00A0rights requests\\u00A0without a signed in user.\",\"displayName\":\"Read\\u00A0and\\u00A0write\\u00A0all - subject\\u00A0rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to modify Viva Engage storylines, read all storylines properties, + update storyline properties, and delete storyline properties without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage storylines\",\"id\":\"6eff534b-699e-44d9-af61-a4182f0ec37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Storyline.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read subject rights requests without a signed-in user.\",\"displayName\":\"Read + all subject rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write subject rights requests without a signed in user.\",\"displayName\":\"Read + and write all subject rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read Azure AD synchronization information, without a signed-in user.\",\"displayName\":\"Read all Azure AD synchronization data.\",\"id\":\"5ba43d2f-fa88-4db2-bd1c-a67c5f0fb1ce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Synchronization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to configure the Azure AD synchronization service, without @@ -22492,7 +19812,7 @@ interactions: the app to create, read, update and delete all users\u2019 tasks and task lists in your organization, without a signed-in user\",\"displayName\":\"Read and write all users\u2019 tasks and tasklists\",\"id\":\"44e666d1-d276-445b-a5fc-8815eeb81d55\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Tasks.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create teams without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create teams without a signed-in user. \",\"displayName\":\"Create teams\",\"id\":\"23fc2474-f741-46ce-8465-674744c5c361\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Get a list of all teams, without a signed-in user.\",\"displayName\":\"Get a list of all teams\",\"id\":\"2280dda6-0bfd-44ee-a2f4-cb867cfc4c1e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read @@ -22663,7 +19983,7 @@ interactions: user.\",\"displayName\":\"Read Teams devices\",\"id\":\"0591bafd-7c1c-4c30-a2a5-2b9aacb1dfe8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the app to read and write the management data for Teams devices, without a signed-in user.\",\"displayName\":\"Read and write Teams devices\",\"id\":\"79c02f5b-bd4f-4713-bc2c-a8a4a66e127b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read\\u00A0tags in Teams\\u00A0without a signed-in user.\",\"displayName\":\"Read + the app to read tags in Teams without a signed-in user.\",\"displayName\":\"Read tags in Teams\",\"id\":\"b74fd6c4-4bde-488e-9695-eeb100e4907f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write tags in Teams without a signed-in user.\",\"displayName\":\"Read and write tags in Teams\",\"id\":\"a3371ca5-911d-46d6-901c-42c8c7a937d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -22680,8 +20000,8 @@ interactions: the app to read all the indicators for your organization, without a signed-in user.\",\"displayName\":\"Read all threat indicators\",\"id\":\"197ee4e9-b993-4066-898f-d6aecc55125b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), without a signed-in user. \\u00A0It cannot update - any threat indicators it does not own.\",\"displayName\":\"Manage threat indicators + (read, update and delete), without a signed-in user. It cannot update any + threat indicators it does not own.\",\"displayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"21792b6c-c986-4ffc-85de-df9da54b52fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read threat intelligence information, such as indicators, observations, and and articles, without a signed in user.\",\"displayName\":\"Read all Threat @@ -22713,6 +20033,9 @@ interactions: the app to read and write secondary mail addresses for all users, without a signed-in user.\",\"displayName\":\"Read and write all secondary mail addresses for users\",\"id\":\"280d0935-0796-47d1-8d26-273470a3f17a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-Mail.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all users without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + users\",\"id\":\"a94a502d-0281-4d15-8cd2-682ac9362c4c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write password profiles and reset passwords for all users, without a signed-in user.\",\"displayName\":\"Read and write all password profiles and reset user passwords\",\"id\":\"cc117bb9-00cf-4eb8-b580-ea2a878fe8f7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-PasswordProfile.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -22757,6 +20080,41 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods\",\"displayName\":\"Read and write all users' authentication methods \",\"id\":\"50483e42-d915-4231-9639-7fdb7fd190e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read email methods of all users in your organization, without a + signed-in user. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' email methods\",\"id\":\"a1e58be0-1095-422b-b067-73434bd7d40f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write email methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' email methods\",\"id\":\"e8ecb853-1435-4a49-95ba-ec5b31b11672\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read external authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' external authentication methods\",\"id\":\"d2c4289f-9f95-40da-ad43-eeb1506f0db7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write external authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' external + authentication methods\",\"id\":\"c7a22c2e-5b01-4129-8159-6c8be2c78f16\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' HardwareOATH authentication methods\",\"id\":\"7b544555-7811-49ff-8223-a56be870e33a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write HardwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + HardwareOATH authentication methods\",\"id\":\"7e9ebcc1-90aa-4471-8051-e68d6b4e9c89\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Microsoft authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' Microsoft authentication methods\",\"id\":\"a9c5f16e-e5ca-4e33-89ad-903fcfc01c23\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Microsoft Authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Microsoft Authentication methods\",\"id\":\"c833c349-a1ab-4b6d-94a2-fa9a8674420c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read passkey authentication methods of all users in your organization, without a signed-in user. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read @@ -22766,6 +20124,68 @@ interactions: to see secret information like passwords, or to sign-in or otherwise use the authentication methods\",\"displayName\":\"Read and write all users' passkey authentication methods\",\"id\":\"0400e371-7db1-4338-a269-96069eb65227\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read password authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' password authentication methods\",\"id\":\"8d2c17ff-b93d-40d5-9def-d843680509cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write password authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' password + authentication methods\",\"id\":\"f6d38dfd-ec08-4995-8f07-23e929df0936\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read phone authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' phone authentication methods\",\"id\":\"f529a223-ea70-43ec-b268-5012de2fbaa2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write phone methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' phone methods\",\"id\":\"6e85d483-7092-4375-babe-0a94a8213a58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read platform credentials methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' platform credentials methods\",\"id\":\"07c0b1e4-15bd-442f-834b-30f8291388d1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write platform credentials methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' platform + credentials methods\",\"id\":\"1a87acf4-a9ca-4576-a974-452ea265d5f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read QR authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' QR methods\",\"id\":\"9a45bc50-cddd-4ebe-bd9c-4f2eacf646ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write QR authentication methods of all users in + your organization, without a signed-in user. This does not allow the app to + see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' QR methods\",\"id\":\"4869299f-18c3-40c8-98f2-222657e67db1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' SoftwareOATH methods\",\"id\":\"a6b423df-a0c8-411d-a809-a4a5985d2939\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write SoftwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + SoftwareOATH methods\",\"id\":\"787442d4-3c6e-4e99-aa95-8ccca20a48ff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read all users' Temporary Access + Pass methods\",\"id\":\"bf82209c-b22b-4747-ac88-a68be99032cf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Temporary Access Pass authentication methods + of all users in your organization, without a signed-in user. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Temporary Access Pass methods\",\"id\":\"627169a8-8c15-451c-861a-5b80e383de5c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization, without a signed-in user. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"displayName\":\"Read all users' Windows Hello methods\",\"id\":\"9b8dd4c7-8cca-4ef5-a34a-9c2c75fcc934\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Windows Hello authentication methods of + all users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Windows Hello authentication methods\",\"id\":\"f14eee8a-713e-45aa-8223-2ab74632db1a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send, read, update and delete user\u2019s notifications, without a signed-in user.\",\"displayName\":\"Deliver and manage all user's notifications\",\"id\":\"4e774092-a092-48d1-90bd-baad67c7eb47\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserNotification.ReadWrite.CreatedByApp\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all users' shift schedule preferences without a signed-in @@ -22773,7 +20193,9 @@ interactions: the app to manage all users' shift schedule preferences without a signed-in user.\",\"displayName\":\"Read and write all user shift preferences\",\"id\":\"d1eec298-80f3-49b0-9efb-d90e224798ac\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserShiftPreferences.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all user teamwork settings without a signed-in user.\",\"displayName\":\"Read - all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"This + role can read Verified Id profiles in a tenant.\",\"displayName\":\"Read Verified + Id profiles\",\"id\":\"e227c591-dd64-4a8a-a033-816167f7c938\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read virtual appointments for all users, without a signed-in user. The app must also be authorized to access an individual user\u2019s data by the online meetings application access policy.\",\"displayName\":\"Read @@ -22796,6 +20218,8 @@ interactions: the app to read and write all Windows update deployment settings for the organization without a signed-in user.\",\"displayName\":\"Read and write all Windows update deployment settings\",\"id\":\"7dd1be58-6e76-4401-bf8d-31d1e8180d5b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WindowsUpdates.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read workforce integrations without a signed-in user.\",\"displayName\":\"Read + workforce integrations\",\"id\":\"f10b94b9-37d1-4c88-8b7e-bf75a1152d39\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage workforce integrations to synchronize data from Microsoft Teams Shifts, without a signed-in user.\",\"displayName\":\"Read and write workforce integrations\",\"id\":\"202bf709-e8e6-478e-bcfd-5d63c50b68e3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"info\":{\"logoUrl\":null,\"marketingUrl\":null,\"privacyStatementUrl\":null,\"supportUrl\":null,\"termsOfServiceUrl\":null},\"keyCredentials\":[],\"oauth2PermissionScopes\":[{\"adminConsentDescription\":\"Allows @@ -22833,6 +20257,158 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership on your behalf.\",\"userConsentDisplayName\":\"Read and write administrative units\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent cards and their skills in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"id\":\"73ea6732-992c-4292-98f7-9feff18d3ade\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent cards and their skills on your behalf.\",\"userConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"value\":\"AgentCard.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent cards in Agent Registry\",\"id\":\"b0f726a8-0fa2-4ce2-937b-fd17a446261f\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + on your behalf.\",\"userConsentDisplayName\":\"Read and write agent cards + in Agent Registry\",\"value\":\"AgentCard.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent card manifests in your organization's Agent Registry + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read agent + card manifests in Agent Registry\",\"id\":\"ada96a26-9579-4c29-a578-c3482a765716\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write agent card manifests in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"id\":\"80151b1a-1c31-4846-ae0d-c79939ee13d1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read collections and their membership in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + collections in Agent Registry\",\"id\":\"fa50be38-fdff-469c-96dc-ef5fce3c64bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read collections and their membership on your behalf.\",\"userConsentDisplayName\":\"Read + collections in Agent Registry\",\"value\":\"AgentCollection.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read global collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + global collection in Agent Registry\",\"id\":\"b14924c8-87f1-438a-81f2-dc370ba2f45d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read global collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + global collection in Agent Registry\",\"value\":\"AgentCollection.Read.Global\"},{\"adminConsentDescription\":\"Allows + the app to read quarantined collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"id\":\"43acfda3-daf3-4aa4-955d-b051d0024e82\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read quarantined collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"value\":\"AgentCollection.Read.Quarantined\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write collections in Agent Registry\",\"id\":\"6d8a7002-a05e-4b95-a768-0e6f0badc6c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write collections + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update global collection and manage its membership in + your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write global collection in Agent Registry\",\"id\":\"c001dd65-8a6b-4349-ab0c-4e8a410d28d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update global collection and manage its membership on + your behalf.\",\"userConsentDisplayName\":\"Read and write global collection + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Global\"},{\"adminConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write quarantined collection in Agent Registry\",\"id\":\"ae331cc9-9f51-484b-a90b-124f2e4a6398\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write quarantined + collection in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Quarantined\"},{\"adminConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"adminConsentDisplayName\":\"Delete + and restore agent identities\",\"id\":\"c8ee41e5-35e7-4fe9-8ecb-93493adcac5b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"userConsentDisplayName\":\"Delete + and restore agent identities\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"adminConsentDisplayName\":\"Enable + or disable agent identities\",\"id\":\"a501206a-e364-4a3f-be6e-765806d0e323\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"userConsentDisplayName\":\"Enable + or disable agent identities\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identities.\",\"adminConsentDisplayName\":\"Read + all agent identities\",\"id\":\"5e850691-d86a-4b24-bfa6-8a52fb37a0c1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identities.\",\"userConsentDisplayName\":\"Read + all agent identities\",\"value\":\"AgentIdentity.Read.All\"},{\"adminConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Read and write all agent identities\",\"id\":\"4a4facd5-0ee1-49b7-a5b2-fdcc2491685e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"userConsentDisplayName\":\"Read and write all agent identities\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"id\":\"75b5feb2-bfe7-423f-907d-cc505186f246\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprints.\",\"id\":\"8fc15edd-ba24-494e-9bf6-d38e1b7ba8fd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f12ba1f6-afb7-4685-9a30-21e8c3f551d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"adminConsentDisplayName\":\"Read + all agent identity blueprints\",\"id\":\"26512dc8-1364-4e9f-867c-6d8b22a9e162\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"userConsentDisplayName\":\"Read + all agent identity blueprints\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"id\":\"4fd490fc-1467-48eb-8a4c-421597ab0402\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"id\":\"6f677aa9-25af-49a5-8a1d-628dc7f0d009\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint branding\",\"id\":\"60960e31-67cb-4d25-9d36-4922109923a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint branding\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"00dcd896-6b23-42ce-b5de-c58493c05e22\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"2c70023e-a482-4af2-9ff1-51ded53e6bad\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"adminConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"id\":\"e7475e0a-9f02-43e2-a250-5c2ea74ccd0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"userConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"id\":\"88c856a2-de61-4632-b2d4-ac503cbc8dd2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"id\":\"bf2cad6a-9082-438a-9a63-95fa2687af65\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"ad57fb88-4658-4fd6-ab7d-e43184b08e4e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"52a417d9-0b3c-4466-9a3b-66960de73d74\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"adminConsentDescription\":\"Allows + the app to read agent instances and their related collections in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"id\":\"4c3c738a-2df0-4877-bf4a-f796950ff34c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent instances and their related collections on your behalf.\",\"userConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"value\":\"AgentInstance.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"id\":\"fc79e324-da24-497a-b5ec-e7de08320375\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read terms of use agreements on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all terms of use agreements\",\"id\":\"af2819c9-df71-4dd3-ade7-4d7c9dc653b7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read terms of use agreements on your behalf.\",\"userConsentDisplayName\":\"Read @@ -22912,6 +20488,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read applications\",\"id\":\"c79f8feb-a9db-4090-85f9-90d820caa0eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read applications and service principals on your behalf.\",\"userConsentDisplayName\":\"Read applications\",\"value\":\"Application.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update all apps in your organization, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read and update all apps\",\"id\":\"0586a906-4d89-4de8-b3c8-1aacdcc0c679\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update all apps in your organization, on your behalf.\",\"userConsentDisplayName\":\"Read + and update all apps\",\"value\":\"Application.ReadUpdate.All\"},{\"adminConsentDescription\":\"Allows the app to create, read, update and delete applications and service principals on behalf of the signed-in user. Does not allow management of consent grants.\",\"adminConsentDisplayName\":\"Read and write all applications\",\"id\":\"bdfbf15f-ee85-4955-8675-146e8e5296b5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -22950,7 +20530,15 @@ interactions: create, and update attack simulation data of an organization\",\"id\":\"27608d7c-2c66-4cad-a657-951d575f5a60\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, and update attack simulation and training data for an organization on your behalf.\",\"userConsentDisplayName\":\"Read, create, - and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Read + activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"id\":\"16786f81-40d2-4116-bb26-d1a753bf0b20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"value\":\"AuditActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"a78fd341-0672-4792-a8ae-a5925b2546eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"value\":\"AuditActivity.Write\"},{\"adminConsentDescription\":\"Allows the app to read and query your audit log activities, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read audit log data\",\"id\":\"e4c9e354-4dc5-45b8-9e7c-e1393b0b1a20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and query your audit log activities, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -23149,8 +20737,8 @@ interactions: delegate and shared calendars.\",\"adminConsentDisplayName\":\"Read user and shared calendars\",\"id\":\"2b9c4092-424d-4249-948d-b43879977640\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read events in all calendars that you can access, including delegate - and shared calendars.\\u00A0\",\"userConsentDisplayName\":\"Read calendars\\u00A0you - can access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows + and shared calendars. \",\"userConsentDisplayName\":\"Read calendars you can + access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows the app to read events in user calendars, except for properties such as body, attachments, and extensions.\",\"adminConsentDisplayName\":\"Read basic details of user calendars\",\"id\":\"662d75ba-a364-42ad-adee-f5f880ea4878\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -23169,6 +20757,10 @@ interactions: organization you have permissions to access. This includes delegate and shared calendars.\",\"userConsentDisplayName\":\"Read and write to your and shared calendars\",\"value\":\"Calendars.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read all AI Insights for calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all AI Insights for calls. \",\"id\":\"e24bdaf9-83f8-468b-a144-c681ccb6caf4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read all AI Insights for calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all AI Insights for calls.\",\"value\":\"CallAiInsights.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read delegation settings of you\",\"adminConsentDisplayName\":\"Read delegation settings\",\"id\":\"305b375b-00fe-48bf-81bc-e8d78954c1b6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows you to read your delegation settings\",\"userConsentDisplayName\":\"Read your @@ -23181,6 +20773,14 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read call event data\",\"id\":\"43431c03-960e-400f-87c6-8f910321dca3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read call event information for an organization on your behalf.\",\"userConsentDisplayName\":\"Read call event data\",\"value\":\"CallEvents.Read\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all recordings of calls. \",\"id\":\"63d31bd6-bcf5-40ca-8283-ba4130a66405\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all recordings of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all recordings of calls.\",\"value\":\"CallRecordings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all transcripts of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all transcripts of calls. \",\"id\":\"fbace248-5d8e-441c-85ca-cc19221a69a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all transcripts of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all transcripts of calls.\",\"value\":\"CallTranscripts.Read.All\"},{\"adminConsentDescription\":\"Allows to read all Change Management items.\",\"adminConsentDisplayName\":\"Read Change Management items\",\"id\":\"4628dff5-c33e-4fde-b17a-b64e7acb1bed\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows to read all Change Management items.\",\"userConsentDisplayName\":\"Read Change @@ -23237,7 +20837,7 @@ interactions: and write the names, descriptions, and settings of channels\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to create chats on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create chats\",\"id\":\"38826093-1258-4dea-98f0-00003be2b8d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create chats on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create chats on your behalf. \",\"userConsentDisplayName\":\"Create chats\",\"value\":\"Chat.Create\"},{\"adminConsentDescription\":\"Allows the app to delete and recover deleted chats, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Delete and recover deleted chats\",\"id\":\"bb64e6fc-6b6d-4752-aea0-dd922dbba588\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -23335,6 +20935,12 @@ interactions: the app to read app consent requests for your approval, and deny or approve those request on your behalf.\",\"userConsentDisplayName\":\"Read and write consent requests\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of contacts a user + has permissions to, including their own and shared contacts.\",\"adminConsentDisplayName\":\"Read + and update the on-premises sync behavior of contacts\",\"id\":\"1e4c6c41-0803-4f52-85ef-0a5d63ad8670\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of contacts you have permissions + to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of your own and shared contacts\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read user contacts. \",\"adminConsentDisplayName\":\"Read user contacts \",\"id\":\"ff74d97f-43af-4b68-9f2a-b77ee6968c5d\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read contacts in your contact folders.\",\"userConsentDisplayName\":\"Read @@ -23354,6 +20960,38 @@ interactions: the app to read, update, create, and delete contacts you have permissions to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read and write to your and shared contacts\",\"value\":\"Contacts.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"adminConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"id\":\"7e2467d1-f874-46bb-828e-24cb06b29d3f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"userConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"value\":\"Content.Process.All\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"adminConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"id\":\"1d787a13-f750-4ad6-875a-fcbd2725596b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"userConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"value\":\"Content.Process.User\"},{\"adminConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"62c55b2f-a2b1-4312-8385-be57afd901b4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"value\":\"ContentActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"id\":\"948caae6-152a-48cd-a746-4844af30e8e9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"value\":\"ContentActivity.Write\"},{\"adminConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Delete Microsoft 365 Copilot conversations\",\"id\":\"ed510a02-ac32-45f9-93e6-04864f7f7e47\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on your behalf.\",\"userConsentDisplayName\":\"Delete + Microsoft 365 Copilot conversations\",\"value\":\"CopilotConversation.Delete\"},{\"adminConsentDescription\":\"Allows + the user to read the packages information\",\"adminConsentDisplayName\":\"Read + all packages information\",\"id\":\"a2dcfcb9-cbe8-4d42-812d-952e55cf7f3f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read packages information.\",\"userConsentDisplayName\":\"Read + all packages information\",\"value\":\"CopilotPackages.Read.All\"},{\"adminConsentDescription\":\"Allows + the user to read and update the packages information\",\"adminConsentDisplayName\":\"Read + and update all packages information\",\"id\":\"e9c5fd18-ac15-43dd-9f5c-6f9611dd5604\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update packages information.\",\"userConsentDisplayName\":\"Read + and update all packages information\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide copilot limited mode setting on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organization-wide copilot limited mode setting\",\"id\":\"aeb2982d-632d-4155-b533-18756ab6fdd8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -23372,46 +21010,45 @@ interactions: within the Azure AD ecosystem on your behalf.\",\"userConsentDisplayName\":\"Read cross-tenant basic information\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export external user data (e.g. customer content or system-generated - logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + the current tenant on behalf of the signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"id\":\"cb1ba48f-d22b-4325-a07f-74135a62ee41\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"value\":\"CrossTenantUserProfileSharing.Read\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export their data\",\"id\":\"759dcd16-3c90-463c-937e-abf89f991c18\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export external user data (e.g. customer content or system-generated logs), + with the current tenant on your behalf. It also permits the application to + export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export data\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export and remove external user data (e.g. customer content - or system-generated logs), associated with the current tenant on behalf of - the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant - user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the current tenant on behalf of the signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated + logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + shared cross-tenant user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export or delete their data\",\"id\":\"64dfa325-cbf8-48e3-938d-51224a0cac01\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's custom authentication extensions on behalf @@ -23668,6 +21305,16 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and update Azure AD recommendations\",\"id\":\"f37235e8-90a0-4189-93e2-e55b53867ccd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update Azure AD recommendations, on your behalf.\",\"userConsentDisplayName\":\"Read and update Azure AD recommendations\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"adminConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"33203a2a-a761-40f0-8a7c-a7e74a9f8ac6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"userConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"adminConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"id\":\"857bd3ea-490e-4284-88a7-a7de1893b6ee\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"userConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all domain properties on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read domains.\",\"id\":\"2f9ee017-59c1-4f1d-9472-bd5529a7b311\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all domain properties on your behalf.\",\"userConsentDisplayName\":\"Read @@ -23713,7 +21360,7 @@ interactions: your assignments without grades\",\"value\":\"EduAssignments.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments and their grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments and their grades\",\"id\":\"2f233e90-164b-4501-8bce-31af2559a2d3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view and modify your assignments on your behalf including \\u00A0grades.\",\"userConsentDisplayName\":\"View + the app to view and modify your assignments on your behalf including grades.\",\"userConsentDisplayName\":\"View and modify your assignments and grades\",\"value\":\"EduAssignments.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments without grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments without grades\",\"id\":\"2ef770a1-622a-47c4-93ee-28d6adbed3a0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -23737,13 +21384,13 @@ interactions: your school, class and user information\",\"value\":\"EduRoster.Read\"},{\"adminConsentDescription\":\"Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization's roster and a limited subset of properties - about users to be read on behalf of the user.\\u00A0Includes name, status, - education role, email address and photo.\",\"adminConsentDisplayName\":\"Read - a limited subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view minimal \\u00A0information about both schools and classes - in your organization and education-related information about you and other - users on your behalf.\",\"userConsentDisplayName\":\"View a limited subset - of your school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows + about users to be read on behalf of the user. Includes name, status, education + role, email address and photo.\",\"adminConsentDisplayName\":\"Read a limited + subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to view minimal information about both schools and classes in your + organization and education-related information about you and other users on + your behalf.\",\"userConsentDisplayName\":\"View a limited subset of your + school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write the structure of schools and classes in an organization's roster and education-specific information about users to be read and written on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' @@ -23755,6 +21402,23 @@ interactions: users' email address\",\"id\":\"64a6cdd6-aab1-4aaf-94b8-3cc8405e90d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your primary email address\",\"userConsentDisplayName\":\"View your email address\",\"value\":\"email\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage conversations, and to read their properties on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Viva + Engage conversations\",\"id\":\"c55541d9-2cdd-4fad-8ead-0c08fae5b0c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage conversations\",\"value\":\"EngagementConversation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage conversations\",\"id\":\"ebbfd079-1634-4640-8618-68b19ebbed1d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + communities\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage Teams QA conversations, and to read their properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + Viva Engage Teams QA conversations\",\"id\":\"58c5819e-29bd-4400-ad52-82cd82a63fbd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage Teams QA + conversations\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"adminConsentDescription\":\"Allows the app to list a user's Viva Engage roles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's Viva Engage roles \",\"id\":\"9f1da0fc-345c-4dfb-bab5-5215a073a417\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to list your Viva Engage roles, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -23807,6 +21471,10 @@ interactions: user via Exchange Web Services\",\"id\":\"9769c687-087d-48ac-9cb3-c37dde652038\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app full access to your mailboxes on your behalf.\",\"userConsentDisplayName\":\"Access your mailboxes\",\"value\":\"EWS.AccessAsUser.All\"},{\"adminConsentDescription\":\"Allows + the app to search the email message trace on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Search + the email message trace\",\"id\":\"b2e7d27e-14e7-41ad-bb15-a88ceb9c3e90\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to search the email message trace on your behalf.\",\"userConsentDisplayName\":\"Search + the email message trace\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all external connections on behalf of a signed-in user. The signed-in user must be an administrator.\",\"adminConsentDisplayName\":\"Read all external connections\",\"id\":\"a38267a5-26b6-4d76-9493-935b7599116b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -23917,6 +21585,26 @@ interactions: file storage containers and the permissions granted will be configured in Microsoft 365 by the developer of each container type.\",\"userConsentDisplayName\":\"Access selected file storage containers\",\"value\":\"FileStorageContainer.Selected\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container types on behalf of the signed + in user. The user must be a SharePoint Embedded Admin or Global Admin.\",\"adminConsentDisplayName\":\"Manage + file storage container types on behalf of the signed in user\",\"id\":\"8e6ec84c-5fcd-4cc7-ac8a-2296efc0ed9b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container types on your behalf. You + must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container types on your behalf\",\"value\":\"FileStorageContainerType.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container type registrations on behalf + of the signed in user. The user must be a SharePoint Embedded Admin or Global + Admin.\",\"adminConsentDisplayName\":\"Manage file storage container type + registrations on behalf of the signed in user\",\"id\":\"c319a7df-930e-44c0-a43b-7e5e9c7f4f24\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container type registrations on your + behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container type registrations on your behalf\",\"value\":\"FileStorageContainerTypeReg.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on behalf of the signed in user. The user must be a SharePoint Embedded Admin + or Global Admin.\",\"adminConsentDisplayName\":\"Access selected file storage + container type registrations.\",\"id\":\"d1e4f63a-1569-475c-b9b2-bdc140405e38\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on your behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Access + selected file storage container type registrations.\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"adminConsentDescription\":\"Allows the app to read and write financials data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write financials data\",\"id\":\"f534bf13-55d4-45a9-8f3c-c92fe64d6131\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write financials data on your behalf.\",\"userConsentDisplayName\":\"Read @@ -23938,6 +21626,11 @@ interactions: access to.\",\"adminConsentDisplayName\":\"Read and write group conversations\",\"id\":\"302bcbb5-855a-4e49-ae20-94a331b0281e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write group conversations that the signed-in user has access to.\",\"userConsentDisplayName\":\"Read and write group conversations\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of groups on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of groups\",\"id\":\"37e00479-5776-4659-aecf-4841ec5d590a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of groups on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of groups\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access.\",\"adminConsentDisplayName\":\"Read @@ -23966,6 +21659,20 @@ interactions: the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.\",\"userConsentDisplayName\":\"Read and write group memberships\",\"value\":\"GroupMember.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + group settings that user can access\",\"id\":\"2eb2bc92-94ef-4c6b-b4ab-2a09bc975e0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on your behalf.\",\"userConsentDisplayName\":\"Read all group settings that + user can access\",\"value\":\"GroupSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all group settings that user can access\",\"id\":\"c1691a6d-99e2-4cfa-b4b5-9e4d67dc0f36\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all group settings + that user can access\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all scenario health monitoring alerts\",\"adminConsentDisplayName\":\"Read all scenario health monitoring alerts\",\"id\":\"74b4ff32-4917-4536-a66d-38a4861e6220\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all scenario health monitoring alerts, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -24003,13 +21710,24 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risk event information\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include confirming risk event detections.\\u00A0\",\"adminConsentDisplayName\":\"Read - and write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + confirming risk event detections. \",\"adminConsentDisplayName\":\"Read and + write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on your behalf.\\u00A0Update operations include confirming - risk event detections.\\u00A0\",\"userConsentDisplayName\":\"Read and write - risk event information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include confirming risk + event detections. \",\"userConsentDisplayName\":\"Read and write risk event + information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read risky agents information\",\"id\":\"3215c57f-3faa-4295-95c2-6f14a5bc6124\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read risky agents information\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on behalf of the signed-in user. Update operations include + dismissing risky agents.\",\"adminConsentDisplayName\":\"Read and write risky + agents information\",\"id\":\"d343bdeb-db6a-4e06-97da-9dafc2d61c60\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on your behalf. Update operations include dismissing + risky agents.\",\"userConsentDisplayName\":\"Read and write risky agents information\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all identity risky service principal information for your organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity risky service principal information\",\"id\":\"ea5c4ab0-5a73-4f35-8272-5d5337884e5d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -24031,13 +21749,12 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risky user information\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write - risky user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write risky + user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on your behalf.\\u00A0Update operations include dismissing - risky users.\",\"userConsentDisplayName\":\"Read and write identity risky - user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include dismissing risky + users.\",\"userConsentDisplayName\":\"Read and write identity risky user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's user flows, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity user flows\",\"id\":\"2903d63d-4611-4d43-99ce-a33f3f52e343\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's user flows, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -24144,20 +21861,21 @@ interactions: the app to read learning content in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning content\",\"id\":\"ea4c1fd9-6a9f-4432-8e5d-86e06cc0da77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read learning content in the organization's directory, on your - behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on your behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Manage learning content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on your + behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read data for the learning provider in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning - provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0data\\u00A0for\\u00A0the - learning\\u00A0provider\\u00A0in\\u00A0the organization's\\u00A0directory, + provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read data for the learning provider in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Read learning provider\",\"value\":\"LearningProvider.Read\"},{\"adminConsentDescription\":\"Allows the app to create, update, read, and delete data for the learning provider - in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0create, - update, read, and delete\\u00A0data\\u00A0for\\u00A0the learning\\u00A0provider\\u00A0in\\u00A0the - organization's\\u00A0directory, on your behalf.\",\"userConsentDisplayName\":\"Manage + in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage + learning provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, update, read, and delete data for the learning provider + in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Manage learning provider\",\"value\":\"LearningProvider.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read data for the learner's self-initiated courses in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -24234,6 +21952,24 @@ interactions: \ The specific lists and the permissions granted will be configured in SharePoint Online.\",\"userConsentDisplayName\":\"Access selected Lists, on behalf of the signed-in user\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in user mailboxes, on behalf of the signed-in user. Does not include + permission to send mail.\",\"adminConsentDisplayName\":\"Read and write the + user's mail, including modifying existing non-draft mails\",\"id\":\"f3af82f6-18e0-4a41-8dc8-a03c11854a8d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in your mailboxes, on your behalf. Does not include permission to send + mail.\",\"userConsentDisplayName\":\"Read and write your mail, including modifying + existing non-draft mails\",\"value\":\"Mail-Advanced.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails a user has permission to access, on behalf of the signed-in + user. This includes their own and shared mail. Does not include permission + to send mail.\",\"adminConsentDisplayName\":\"Read and write all mail the + user can access, including modifying existing non-draft mails\",\"id\":\"bebf0bb6-2ff3-4295-a17d-f3561da294fb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails you have permission to access, on your behalf. This includes + your own mail and shared mail. Does not include permission to send mail.\",\"userConsentDisplayName\":\"Read + and write all mail you can access, including modifying existing non-draft + mails\",\"value\":\"Mail-Advanced.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to read the signed-in user's mailbox.\",\"adminConsentDisplayName\":\"Read user mail \",\"id\":\"570282fd-fa5c-430d-a7fd-fc8dc98a9dca\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read email in your mailbox.\",\"userConsentDisplayName\":\"Read @@ -24267,8 +22003,7 @@ interactions: mail\",\"id\":\"5df07973-7d5d-46ed-9847-1271055cbd51\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, update, create, and delete mail you have permission to access, including your own and shared mail. Does not allow the app to send mail on - your behalf.\",\"userConsentDisplayName\":\"Read and write mail\\u00A0you - can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + your behalf.\",\"userConsentDisplayName\":\"Read and write mail you can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to send mail as users in the organization.\",\"adminConsentDisplayName\":\"Send mail as a user \",\"id\":\"e383f46e-2787-4529-855e-0e479a3ffac0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you.\",\"userConsentDisplayName\":\"Send mail as you @@ -24277,6 +22012,15 @@ interactions: mail on behalf of others\",\"id\":\"a367ab51-6b49-43bf-a716-a1fb06d2a174\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you or on-behalf of someone else.\",\"userConsentDisplayName\":\"Send mail on behalf of others or yourself\",\"value\":\"Mail.Send.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read user's UserConfiguration objects, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Read user's UserConfiguration objects\",\"id\":\"dce2e6fc-0f4b-40da-94e2-14b4477f3d92\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + your UserConfiguration objects\",\"value\":\"MailboxConfigItem.Read\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete user's UserConfiguration objects, + on behalf of the the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write user's UserConfiguration objects\",\"id\":\"7d461784-7715-4b09-9f90-91a6d8722652\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + and write your UserConfiguration objects\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read the user's mailbox folders, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's mailbox folders\",\"id\":\"52dc2051-4958-4636-8f2a-281d39c6981c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read @@ -24285,6 +22029,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write a user's mailbox folders\",\"id\":\"077fde41-7e0b-4c5b-bcd1-e9d743a30c80\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read and write your mailbox folders\",\"value\":\"MailboxFolder.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to export the user's mailbox items, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Export a user's mailbox items\",\"id\":\"58d3e7fa-3ce9-4a0c-9baa-0971f64709d9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export your mailbox items, on your behalf\",\"userConsentDisplayName\":\"Export + your mailbox items\",\"value\":\"MailboxItem.Export\"},{\"adminConsentDescription\":\"Allows the app to backup, restore, and modify mailbox items on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Allows the app to perform backup and restore of mailbox items\",\"id\":\"df96e8a0-f4e1-4ecf-8d83-a429f822cbd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -24443,8 +22191,8 @@ interactions: user's online meeting artifacts\",\"value\":\"OnlineMeetingArtifact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all recordings of online meetings, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all recordings of online meetings.\",\"id\":\"190c2bb6-1fdd-4fec-9aa2-7d571b5e1fe3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all recordings of online meetings, on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read - all recordings of online meetings.\\u00A0\",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of online meetings, on your behalf. \",\"userConsentDisplayName\":\"Read + all recordings of online meetings. \",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read online meeting details on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read user's online meetings\",\"id\":\"9be106e1-f4e3-4df5-bdff-e4bc531cbe43\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read online meeting details on your behalf.\",\"userConsentDisplayName\":\"Read @@ -24484,19 +22232,18 @@ interactions: app to read your basic profile information.\",\"userConsentDisplayName\":\"Sign in as you\",\"value\":\"openid\"},{\"adminConsentDescription\":\"Allows the app to read the organization and related resources, on behalf of the signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read the organization and related resources, on your behalf.\\u00A0Related + user. Related resources include things like subscribed skus and tenant branding + information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.\",\"userConsentDisplayName\":\"Read organization information\",\"value\":\"Organization.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and write the organization and related resources, on behalf - of the signed-in user.\\u00A0Related resources include things like subscribed - skus and tenant branding information.\",\"adminConsentDisplayName\":\"Read - and write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + of the signed-in user. Related resources include things like subscribed skus + and tenant branding information.\",\"adminConsentDisplayName\":\"Read and + write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the organization and related resources, on your - behalf.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"userConsentDisplayName\":\"Read and write organization - information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf. Related resources include things like subscribed skus and tenant branding + information.\",\"userConsentDisplayName\":\"Read and write organization information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read the organizational branding information, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organizational branding information\",\"id\":\"9082f138-6f02-4f3a-9f4d-5f3c2ce5c688\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -24509,10 +22256,10 @@ interactions: behalf.\",\"userConsentDisplayName\":\"Read and write organizational branding information\",\"value\":\"OrganizationalBranding.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all organizational contacts on behalf of the signed-in user. - \\u00A0These contacts are managed by the organization and are different from - a user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational + \ These contacts are managed by the organization and are different from a + user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational contacts\",\"id\":\"08432d1b-5911-483c-86df-7980af5cdee0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all organizational contacts on your behalf.\\u00A0 These contacts + the app to read all organizational contacts on your behalf. These contacts are managed by the organization and are different from your personal contacts.\",\"userConsentDisplayName\":\"Read organizational contacts\",\"value\":\"OrgContact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide apps and services settings on behalf of @@ -24656,6 +22403,11 @@ interactions: your organization's policies\",\"id\":\"572fea84-0151-49b2-9301-11cb16974376\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's policies on your behalf.\",\"userConsentDisplayName\":\"Read your organization's policies\",\"value\":\"Policy.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read the authentication method policies, on behalf of the signed-in + user. \",\"adminConsentDisplayName\":\"Read authentication method policies\",\"id\":\"a6ff13ac-1851-4993-8ca9-a671d70de2d5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the authentication method policies for your tenant, on your + behalf.\",\"userConsentDisplayName\":\"Read your authentication method policies + \",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows the app to read your organization's conditional access policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization's conditional access policies\",\"id\":\"633e0fce-8c58-4cfb-9495-12bbd5a24f7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -24704,8 +22456,8 @@ interactions: on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication flow policies\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"adminConsentDescription\":\"Allows the app to read and write the authentication method policies, on behalf of - the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write - authentication method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the signed-in user. \",\"adminConsentDisplayName\":\"Read and write authentication + method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the authentication method policies for your tenant, on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication method policies \",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows @@ -24728,12 +22480,19 @@ interactions: request policy\",\"id\":\"4d135e65-66b8-41a8-9f8b-081452c91774\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's consent request policy on your behalf.\",\"userConsentDisplayName\":\"Read and write consent request policy\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"adminConsentDescription\":\"Allows - the app to read and write your organization's cross tenant access policies - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and - write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's cross tenant access policies on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's cross tenant access policies\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write your organization's M365 cross tenant access capabilities\",\"id\":\"9ef7463f-1d39-406f-89ea-3483a4645e1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's + M365 cross tenant access capabilities\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"adminConsentDescription\":\"Allows the app to read and write your organization's device configuration policies on behalf of the signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -24837,29 +22596,29 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write print connectors\",\"id\":\"79ef9967-7d59-4213-9c64-4b10687637d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and write print connectors on your behalf.\",\"userConsentDisplayName\":\"Read and write print connectors\",\"value\":\"PrintConnector.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to create (register) printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to create (register) printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows + the application to create (register) printers on behalf of the signed-in user. + \",\"adminConsentDisplayName\":\"Register printers \",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to create (register) printers on your behalf. \",\"userConsentDisplayName\":\"Register + printers \",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register, + printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Register, read, update, and unregister printers\",\"id\":\"93dae4bd-43a1-4a23-9a1a-92957e1d9121\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on your behalf.\\u00A0\\u00A0\",\"userConsentDisplayName\":\"Register, - read, update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows - the application to read printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + printers on your behalf. \",\"userConsentDisplayName\":\"Register, read, + update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows + the application to read printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printers\",\"id\":\"3a736c8a-018e-460a-b60c-863b2683e8bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printers on your behalf. \",\"userConsentDisplayName\":\"Read printers\",\"value\":\"Printer.Read.All\"},{\"adminConsentDescription\":\"Allows - the application to read and update printers on behalf of the signed-in user.\\u00A0Does - not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read + the application to read and update printers on behalf of the signed-in user. + Does not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read and update printers\",\"id\":\"89f66824-725f-4b8f-928e-e1c5258dc565\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printers on your behalf.\\u00A0Does not - allow creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read + the application to read and update printers on your behalf. Does not allow + creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read and update printers\",\"value\":\"Printer.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to read printer shares on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + the application to read printer shares on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printer shares\",\"id\":\"ed11134d-2f3f-440d-a2e1-411efada2502\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the application to read printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printer shares on your behalf. \",\"userConsentDisplayName\":\"Read printer shares\",\"value\":\"PrinterShare.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read basic information about printer shares on behalf of the signed-in user. Does not allow reading access control information.\",\"adminConsentDisplayName\":\"Read @@ -24867,8 +22626,8 @@ interactions: the application to read basic information about printer shares on your behalf.\",\"userConsentDisplayName\":\"Read basic information about printer shares\",\"value\":\"PrinterShare.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update printer shares on behalf of the signed-in - user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + user. \",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to read and update printer shares on your behalf. \",\"userConsentDisplayName\":\"Read and update printer shares\",\"value\":\"PrinterShare.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to create print jobs on behalf of the signed-in user and upload document content to print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Create @@ -24882,10 +22641,10 @@ interactions: the application to read the metadata and document content of print jobs that you created.\",\"userConsentDisplayName\":\"Read your print jobs\",\"value\":\"PrintJob.Read\"},{\"adminConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read - print jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read print + jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows + your behalf. \",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of user's print jobs\",\"id\":\"6a71a747-280f-4670-9ca0-a9cbf882b274\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -24893,10 +22652,10 @@ interactions: not allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of your print jobs\",\"value\":\"PrintJob.ReadBasic\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs on behalf of the signed-in - user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of print jobs\",\"id\":\"04ce8d60-72ce-4867-85cf-6d82f36922f3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read the metadata of print jobs on your behalf. Does not + allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of print jobs\",\"value\":\"PrintJob.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Read @@ -24905,11 +22664,11 @@ interactions: jobs that you created.\",\"userConsentDisplayName\":\"Read and update your print jobs\",\"value\":\"PrintJob.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + jobs on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read and write print jobs\",\"id\":\"036b9544-e8c5-46ef-900a-0646cc42b271\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read and update - print jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + jobs on your behalf. \",\"userConsentDisplayName\":\"Read and update print + jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of user's print jobs\",\"id\":\"6f2d22f2-1cb6-412c-a17c-3336817eaa82\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -24917,10 +22676,10 @@ interactions: Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of your print jobs\",\"value\":\"PrintJob.ReadWriteBasic\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs on behalf of - the signed-in user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + the signed-in user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of print jobs\",\"id\":\"3a0db2f6-0d2a-4c19-971b-49109b19ad3d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read and update the metadata of print jobs on your behalf. + Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of print jobs\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read tenant-wide print settings on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read tenant-wide print settings\",\"id\":\"490f32fd-d90f-4dd7-a601-ff6cdc1a3f6c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -24972,7 +22731,7 @@ interactions: groups, storage, compute) on behalf of the signed-in users.\",\"adminConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"id\":\"a84a9652-ffd3-496e-a991-22ba5529156a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to request and manage time-based assignment and just-in-time elevation - of user privileges to manage \\u00A0your Azure resources (like your subscriptions, + of user privileges to manage your Azure resources (like your subscriptions, resource groups, storage, compute) on your behalf.\",\"userConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"value\":\"PrivilegedAccess.ReadWrite.AzureResources\"},{\"adminConsentDescription\":\"Allows the app to read time-based assignment schedules for access to Azure AD groups, @@ -25036,6 +22795,22 @@ interactions: the app to read, update and perform action on programs and program controls that you have access to.\",\"userConsentDisplayName\":\"Manage programs that you can access\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"adminConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"id\":\"98f5a27a-539a-48bc-a597-f78e9e1e76bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"userConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"value\":\"ProtectionScopes.Compute.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"adminConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"id\":\"4fc04d16-a9fc-4c5e-8da4-79b6c33638a4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"userConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"value\":\"ProtectionScopes.Compute.User\"},{\"adminConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read provisioning log data\",\"id\":\"95aec97b-cf27-4a8d-a67d-42f60b5b38ef\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on your behalf.\",\"userConsentDisplayName\":\"Read + provisioning log data\",\"value\":\"ProvisioningLog.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -25056,12 +22831,18 @@ interactions: all Questions and Answers that the user can access.\",\"id\":\"f73fa04f-b9a5-4df9-8843-993ce928925e\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read all question and answer sets that you can access.\",\"userConsentDisplayName\":\"Read all Questions and Answers that you can access.\",\"value\":\"QnA.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Access real-time enriched + data in a meeting\",\"id\":\"db5d5bae-0c9e-444e-9390-8a5fea98c253\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on your + behalf.\",\"userConsentDisplayName\":\"Access real-time enriched data in a + meeting\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read - Records Management configuration,\\u00A0labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + Records Management configuration, labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.\",\"userConsentDisplayName\":\"Read Records - Management configuration,\\u00A0labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow + Management configuration, labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write Records Management configuration, labels, and policies\",\"id\":\"f2833d75-a4e6-40ab-86d4-6dfe73c97605\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -25172,11 +22953,11 @@ interactions: assignments.\",\"userConsentDisplayName\":\"Read role management data for all RBAC providers\",\"value\":\"RoleManagement.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - behalf of the signed-in user.\\u00A0 This includes reading Cloud PC role definitions + behalf of the signed-in user. This includes reading Cloud PC role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"id\":\"9619b88a-8a25-48a7-9571-d23be0337a79\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - your behalf.\\u00A0 This includes reading Cloud PC role definitions and role - assignments.\",\"userConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows + your behalf. This includes reading Cloud PC role definitions and role assignments.\",\"userConsentDisplayName\":\"Read + Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows the app to read the role-based access control (RBAC) settings for your company's directory, on behalf of the signed-in user. This includes reading M365 Defender role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read @@ -25342,6 +23123,16 @@ interactions: like deleting an email, on your behalf.\",\"userConsentDisplayName\":\"Read metadata, detection details, and execute remediation actions on emails in your organization\",\"value\":\"SecurityAnalyzedMessage.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all Security Copilot signed-in user's resources on behalf + of the signed-in user\",\"adminConsentDisplayName\":\"Read all Security Copilot + resources for the signed-in user\",\"id\":\"84499c31-ac2e-44d3-a0cf-a6c386d4dfe8\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Read + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write Security Copilot resources owned by the signed-in + user on their behalf.\",\"adminConsentDisplayName\":\"Read and write individually + owned Security Copilot resources of the signed-in user\",\"id\":\"206291b0-2167-47a7-a640-6cdc1df710ba\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to write Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Write + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization\u2019s security events on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization\u2019s security events\",\"id\":\"64733abd-851e-478a-bffb-e47a14b18235\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -25354,6 +23145,25 @@ interactions: the app to read your organization\u2019s security events on your behalf. Also allows you to update editable properties in security events.\",\"userConsentDisplayName\":\"Read and update your organization\u2019s security events\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all the identity security available identity accounts\",\"adminConsentDisplayName\":\"Read + identity security available identity accounts\",\"id\":\"3e9ed69a-a48e-473c-8b97-413016703a37\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all the identity security available identity accounts on your + behalf.\",\"userConsentDisplayName\":\"Read identity security available identity + accounts\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write identity security available actions on behalf of + the signed-in identity.\",\"adminConsentDisplayName\":\"Read and perform identity + security available actions\",\"id\":\"818229ce-20e4-47bd-92f4-bc94dbb37a56\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write identity security available actions on your behalf.\",\"userConsentDisplayName\":\"Read + and perform identity security available actions\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the sensors window auditing configuration of the signed in + user\",\"adminConsentDisplayName\":\"Read sensors window auditing configuration\",\"id\":\"8ff90903-1ecb-4f3a-b8b2-42120374ecd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the sensors window auditing configuration on your behalf\",\"userConsentDisplayName\":\"Read + sensors window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration of the + signed in user\",\"adminConsentDisplayName\":\"Read and write sensors window + auditing configuration\",\"id\":\"b810fdb4-8733-43bd-9b37-fddb7215c69f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration on your + behalf\",\"userConsentDisplayName\":\"Read and write window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all the identity security health issues of signed user\",\"adminConsentDisplayName\":\"Read identity security health issues\",\"id\":\"a0d0da43-a6df-4416-b63d-99c79991aae8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all the identity security health issues on your behalf.\",\"userConsentDisplayName\":\"Read @@ -25389,7 +23199,30 @@ interactions: the app to read and write security incidents, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write to incidents\",\"id\":\"128ca929-1a19-45e6-a3b8-435ec44a36ba\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write to all security incidents that you have access to.\",\"userConsentDisplayName\":\"Read - and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Evaluate sensitivity + labels\",\"id\":\"a4633e44-d355-4474-99df-8c2de6b0e39e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on your + behalf.\",\"userConsentDisplayName\":\"Evaluate sensitivity labels\",\"value\":\"SensitivityLabel.Evaluate\"},{\"adminConsentDescription\":\"Allows + the app to evaluate all sensitivity label.\",\"adminConsentDisplayName\":\"Evaluate + labels tenant scope.\",\"id\":\"a42e3c42-b31e-4919-b699-696dca5dc9e7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Evaluate + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Evaluate + labels tenant scope\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + user scope.\",\"id\":\"1aeb73ce-68d7-49b7-913a-eedc80844551\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Get labels + user scope\",\"value\":\"SensitivityLabel.Read\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + app scope.\",\"id\":\"8b377c27-ea19-4863-a948-8a8588c8f2c3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels on behalf of user.\",\"userConsentDisplayName\":\"Get labels on behalf + of user\",\"value\":\"SensitivityLabels.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to export all Sentiment Survey, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Export + all Sentiment Survey\",\"id\":\"df9fd94d-51ff-443d-8f31-ae4dc1b5b8d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export all Sentiment Survey, on your behalf.\",\"userConsentDisplayName\":\"Export + all Sentiment Survey\",\"value\":\"SentimentSurvey.Export.All\"},{\"adminConsentDescription\":\"Allows the app to read all Exchange service activity, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Exchange service activity\",\"id\":\"1fe7aa48-9373-4a47-8df3-168335e0f4c9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all Exchange service activity, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -25433,6 +23266,18 @@ interactions: and update service principal endpoints\",\"id\":\"7297d82c-9546-4aed-91df-3d4f0a9b3ff0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to update service principal endpoints\",\"userConsentDisplayName\":\"Read and update service principal endpoints\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read, + write and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"c608c170-08b5-466b-a8fe-0b4074b01613\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on your behalf.\",\"userConsentDisplayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"adminConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"00dcb678-f9af-4e73-acb1-4f1657364629\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on your behalf.\",\"userConsentDisplayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the tenant-level settings in SharePoint and OneDrive on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"2ef70e10-5bfd-4ede-a5f6-67720500b258\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -25453,6 +23298,23 @@ interactions: create, edit, and delete short notes of the signed-in user\",\"id\":\"328438b7-4c01-4c07-a840-e625a749bb89\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, edit, and delete your short notes.\",\"userConsentDisplayName\":\"Read, create, edit, and delete your short notes\",\"value\":\"ShortNotes.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read SignInIdentifiers\",\"id\":\"458e1edc-1e75-438c-8c7b-c32115c9d373\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on your behalf.\",\"userConsentDisplayName\":\"Read + all sign-in identifiers\",\"value\":\"SignInIdentifier.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all + sign-in identifiers\",\"id\":\"b4673c3c-7b5a-4012-9826-7c7e3c8db6af\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on your + behalf.\",\"userConsentDisplayName\":\"Read and write all sign-in identifiers\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"adminConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"id\":\"0e2e68e1-3f32-4e10-9281-f749e097fcbe\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"userConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"value\":\"Sites.Create.All\"},{\"adminConsentDescription\":\"Allows the application to have full control of all site collections on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Have full control of all site collections\",\"id\":\"5a54b8b3-347c-476d-8f8e-42d5c7424d29\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -25500,6 +23362,12 @@ interactions: the app to read and write your organization's SPIFFE trust domains and child resources on your behalf.\",\"userConsentDisplayName\":\"Read and write SPIFFE trust domains and child resources\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to modify the Viva Engage storyline and read all storyline properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage storylines\",\"id\":\"fd1d61cb-4e4b-4d15-a6d2-161348681d84\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage storyline items and read all storyline properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + storylines\",\"value\":\"Storyline.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read subject rights requests on behalf of the signed-in user\",\"adminConsentDisplayName\":\"Read subject rights requests\",\"id\":\"9c3af74c-fd0f-4db4-b17a-71939e2a9d77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read subject rights requests on your behalf.\",\"userConsentDisplayName\":\"Read @@ -25552,7 +23420,7 @@ interactions: and write to your and shared tasks\",\"value\":\"Tasks.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to create teams on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create teams\",\"id\":\"7825d5d6-6049-4ce7-bdf6-3b8d53f4bcd0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create teams on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create teams on your behalf. \",\"userConsentDisplayName\":\"Create teams\",\"value\":\"Team.Create\"},{\"adminConsentDescription\":\"Read the names and descriptions of teams, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read the names and descriptions of teams\",\"id\":\"485be79e-c497-4b35-9400-0e3fa7f2a5d4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Read @@ -25897,7 +23765,7 @@ interactions: the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.\",\"userConsentDisplayName\":\"Read term store data\",\"value\":\"TermStore.Read.All\"},{\"adminConsentDescription\":\"Allows - the app to read or modify data that the signed-in user has access to.\\u00A0This + the app to read or modify data that the signed-in user has access to. This includes all sets, groups and terms in the term store.\",\"adminConsentDisplayName\":\"Read and write term store data\",\"id\":\"6c37c71d-f50f-4bff-8fd3-8a41da390140\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read or modify data that you have access to. This includes all @@ -25920,13 +23788,13 @@ interactions: the app to read all the indicators for your organization, on your behalf.\",\"userConsentDisplayName\":\"Read all threat indicators\",\"value\":\"ThreatIndicators.Read.All\"},{\"adminConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on behalf of the signed-in user. \\u00A0It cannot - update any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage + (read, update and delete), on behalf of the signed-in user. It cannot update + any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"91e7d36d-022a-490f-a748-f8e011357b42\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on your behalf. \\u00A0It cannot update any threat - indicators that it is not an owner of.\",\"userConsentDisplayName\":\"Manage - threat indicators this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows + (read, update and delete), on your behalf. It cannot update any threat indicators + that it is not an owner of.\",\"userConsentDisplayName\":\"Manage threat indicators + this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows the app to read threat intelligence information, such as indicators, observations, and articles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all threat intelligence information\",\"id\":\"f266d9c0-ccb9-4fb8-a228-01ac0d8d6627\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -26005,6 +23873,11 @@ interactions: the app to read and write secondary mail addresses for all users, on your behalf.\",\"userConsentDisplayName\":\"Read and write secondary mail addresses for users\",\"value\":\"User-Mail.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of users on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of users\",\"id\":\"7ff9afdd-0cdb-439d-a61c-fea3e9339e89\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of users on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of users\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read and write password profiles and reset passwords for all users, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write password profiles and reset user passwords\",\"id\":\"56760768-b641-451f-8906-e1b8ab31bca7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -26124,6 +23997,152 @@ interactions: does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' authentication methods\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's email authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's email authentication methods\",\"id\":\"12b23cea-90c1-4873-9094-f45c5f290f86\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your email authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your email + authentication methods\",\"value\":\"UserAuthMethod-Email.Read\"},{\"adminConsentDescription\":\"Allows + the app to read email methods of all users in your organization that the signed-in + user has access to. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + all users' email methods\",\"id\":\"76caaf3a-ebdb-40a3-9299-4196e636f290\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read email methods of all users you have access to in your organization. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' email methods\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's email authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's email authentication methods\",\"id\":\"696aa421-62dc-4c99-be16-015b23444089\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your email authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your email authentication methods\",\"value\":\"UserAuthMethod-Email.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write email methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' email methods.\",\"id\":\"074f680f-c89e-45be-880e-5d0642860a1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write email methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' email methods\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's external authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's external authentication methods\",\"id\":\"d1739827-146b-4f7f-b52c-1c509253aa57\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your external authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your external + authentication methods\",\"value\":\"UserAuthMethod-External.Read\"},{\"adminConsentDescription\":\"Allows + the app to read external authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' external authentication + methods\",\"id\":\"cbca9646-4c34-4cea-8e54-9a7088018820\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read external authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' external authentication methods\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's external authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's external authentication methods\",\"id\":\"28c2e8f9-828a-4691-a090-f2f0b7fc07b3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your external authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your external authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write external authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' external methods.\",\"id\":\"9d91805d-0f53-43e3-a0f3-303ad4f3056f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write external authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' external + authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's HardwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's HardwareOATH authentication methods\",\"id\":\"ccd2eb40-8874-44e6-8f96-335908b3cfdb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your HardwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"id\":\"acd68c26-c283-4bf4-8b5c-200fc179bdd5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's HardwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's HardwareOATH authentication methods\",\"id\":\"147ca97b-6686-4849-b37e-09d9b5ad45fc\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your HardwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your HardwareOATH authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' HardwareOATH methods.\",\"id\":\"480643f2-a162-43c5-a670-dc1494fc911b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"f14a567b-3280-4124-95a0-eca86006967e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Microsoft Authenticator authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' Microsoft authentication + methods\",\"id\":\"7b627679-e2fd-4bfd-990e-989e2914d4e6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' Microsoft authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"9f7dfa0c-eb40-42be-8d45-8af4a9219c6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Microsoft Authenticator authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Microsoft Authentication methods.\",\"id\":\"1b7322b2-5cb3-4f13-928f-d7ca97c5fba9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Microsoft + Authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's passkey authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's passkey authentication methods\",\"id\":\"828fcbda-0d26-431d-8bfb-83f217224621\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your passkey authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your passkey + authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read\"},{\"adminConsentDescription\":\"Allows the app to read passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication @@ -26133,6 +24152,14 @@ interactions: to in your organization.This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's passkey authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's passkey authentication methods\",\"id\":\"b2de7db9-10f7-4800-b04c-b5b91e4891d6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your passkey authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use @@ -26143,6 +24170,250 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's password authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's password authentication methods\",\"id\":\"7f0f82c3-de19-4ddc-810d-a2206d7637fd\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your password authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your password + authentication methods\",\"value\":\"UserAuthMethod-Password.Read\"},{\"adminConsentDescription\":\"Allows + the app to read password authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' password authentication + methods\",\"id\":\"4f69a4e2-2aa0-43a7-ad6b-98b4cda1f23f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read password authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' password authentication methods\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's password authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's password authentication methods\",\"id\":\"60cce20d-d41e-4594-b391-84bbf8cc31f3\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your password authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your password authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write password authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' password methods.\",\"id\":\"7f5b683d-df96-4690-a88d-6e336ed6dc7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write password authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' password + authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's phone authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's phone authentication methods\",\"id\":\"43dab3b9-e8b4-424d-8e13-6a2ad2a625fa\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your phone authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your phone + authentication methods\",\"value\":\"UserAuthMethod-Phone.Read\"},{\"adminConsentDescription\":\"Allows + the app to read phone authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' phone authentication + methods\",\"id\":\"20cf4ae1-09b9-4d29-a6f8-43e1820ce60c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read phone authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' phone authentication methods\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's phone authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's phone authentication methods\",\"id\":\"6c4aad61-f76b-46ad-a22c-57d4d3d962af\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your phone authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your phone authentication methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Phone methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' phone methods.\",\"id\":\"48c99302-9a24-4f27-a8a7-acef4debba14\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write phone methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' phone methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's platform credential authentication methods\",\"id\":\"9c694582-e8f2-40e2-8353-fb43e2e0f12a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your platform credential authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.Read\"},{\"adminConsentDescription\":\"Allows + the app to read platform credentials methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' platform credentials + methods\",\"id\":\"5936156c-f89b-4850-997d-026c4e6ce529\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read platform credentials methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' platform credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's platform credential authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's platform credential authentication methods\",\"id\":\"70327f81-b953-43c9-92d3-131c74e4beb8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' platform credentials methods.\",\"id\":\"cb11bf8c-dde1-4504-b6a5-31e1562b0749\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' platform + credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's QR authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's QR authentication methods\",\"id\":\"d6893c31-9187-405c-8dfc-f700c8fc161a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your QR authentication methods. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"userConsentDisplayName\":\"Read your QR authentication + methods\",\"value\":\"UserAuthMethod-QR.Read\"},{\"adminConsentDescription\":\"Allows + the app to read QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' QR methods\",\"id\":\"e4900dfb-ad17-410d-8ddb-7aebd8a6af1a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read QR authentication methods of all users you have access to + in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' QR methods\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's QR authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's QR authentication methods\",\"id\":\"651210da-18ce-4e42-b7db-302ff88e9326\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your QR authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your QR authentication methods\",\"value\":\"UserAuthMethod-QR.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' QR methods.\",\"id\":\"db39086a-da7d-4cbd-9ac0-6816f9a80c95\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' QR methods\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's SoftwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's SoftwareOATH authentication methods\",\"id\":\"247f2733-6e3d-46ff-a904-f5fd58eb0d97\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your SoftwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your SoftwareOATH + authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"id\":\"3e366fa0-3097-4eb6-8294-3028f77eea6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's SoftwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's SoftwareOATH authentication methods\",\"id\":\"16721eb3-4493-4ae1-9542-264d9ffe3ce9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your SoftwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your SoftwareOATH authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' SoftwareOATH methods.\",\"id\":\"5b34c8b5-2396-4b35-b284-83fb6a3e73ce\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' SoftwareOATH + methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"84ded88f-26ba-49d6-b776-efec398de692\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Temporary Access Pass authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Temporary Access Pass methods\",\"id\":\"6976c635-c9c2-41e6-a21d-e6913a155273\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Temporary Access Pass + methods\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"2424436d-902f-4651-a1c7-b3b93147c960\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Temporary Access Pass authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users in your organization that the signed-in user has access to. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write all users' Temporary Access Pass methods.\",\"id\":\"05de4a66-e51a-4312-842a-30c8094698d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users you have access to in your organization. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read and write + all users' Temporary Access Pass methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Windows Hello authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Windows Hello methods\",\"id\":\"efe2b5aa-3a8e-486c-b0be-cc4d185c1b40\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Windows Hello authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your Windows + Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Windows Hello methods\",\"id\":\"ff37d46d-b88a-4e0c-85ee-7e26c37b18eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Windows Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Windows Hello authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Windows Hello authentication methods\",\"id\":\"f11e1db9-d419-4a24-b677-792723ffd727\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Windows Hello authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Windows Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Windows Hello methods.\",\"id\":\"13eae17d-aaa4-47b8-aaee-0eb33c6e2450\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Windows + Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read cloud clipboard data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + cloud clipboard items\",\"id\":\"61e8a09a-087f-4e36-8c8c-1c77c5228017\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your cloud clipboard items.\",\"userConsentDisplayName\":\"Read + cloud clipboard items\",\"value\":\"UserCloudClipboard.Read\"},{\"adminConsentDescription\":\"Allows the app to send, read, update and delete user\u2019s notifications.\",\"adminConsentDisplayName\":\"Deliver and manage user's notifications\",\"id\":\"26e2f3e8-b2a1-47fc-9620-89bb5b042024\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send, read, update and delete your app-specific notifications.\",\"userConsentDisplayName\":\"Deliver @@ -26155,15 +24426,36 @@ interactions: Timeline.\",\"adminConsentDisplayName\":\"Write app activity to users' timeline\",\"id\":\"367492fc-594d-4972-a9b5-0d58c622c91c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to report your app activity information to Microsoft Timeline.\",\"userConsentDisplayName\":\"Write app activity to your timeline\",\"value\":\"UserTimelineActivity.Write.CreatedByApp\"},{\"adminConsentDescription\":\"Allows + the app to read a user's windows settings which are stored in cloud and their + values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + windows settings for all devices\",\"id\":\"77e07bab-1b34-40a5-bb6c-4b197b3f6027\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your windows settings which are stored in cloud and their + values.\",\"userConsentDisplayName\":\"Read your windows settings for all + devices\",\"value\":\"UserWindowsSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write a user's windows settings which are stored in cloud + and their values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write windows settings for all devices\",\"id\":\"dcb1026d-b7e1-4d31-9f61-6724d5140bf9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your windows settings which are stored in cloud + and their values.\",\"userConsentDisplayName\":\"Read and write your windows + settings for all devices\",\"value\":\"UserWindowsSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + Verified Id profiles\",\"id\":\"604b2056-41ed-4c56-aad5-1241d4ef7333\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + Verified Id profiles\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"adminConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + and write Verified Id profiles\",\"id\":\"e4a9cb5e-4767-48f8-9029-decf26a54456\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + and write Verified Id profiles\",\"value\":\"VerifiedId-Profile.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows an application to read virtual appointments for the signed-in user. Only an - organizer or participant user can read their virtual appointments.\\u202F\\u00A0\",\"adminConsentDisplayName\":\"Read + organizer or participant user can read their virtual appointments. \",\"adminConsentDisplayName\":\"Read a user's virtual appointments\",\"id\":\"27470298-d3b8-4b9c-aad4-6334312a3eac\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read virtual appointments on your behalf.\\u202F\\u202F\",\"userConsentDisplayName\":\"Read - your virtual appointments\\u202F\",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows + the app to read virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read + your virtual appointments \",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows an application to read and write virtual appointments for the signed-in user. - Only an organizer or participant user can read and write their virtual appointments.\\u202F\",\"adminConsentDisplayName\":\"Read - and write a user's virtual appointments\\u202F\\u00A0\",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read and write virtual appointments on your behalf.\\u202F\\u00A0\",\"userConsentDisplayName\":\"Read + Only an organizer or participant user can read and write their virtual appointments. + \",\"adminConsentDisplayName\":\"Read and write a user's virtual appointments + \ \",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read and write your virtual appointments\",\"value\":\"VirtualAppointment.ReadWrite\"},{\"adminConsentDescription\":\"Allows an application to send notifications for virtual appointments for the signed-in user.\",\"adminConsentDisplayName\":\"Send notification regarding virtual @@ -26198,11 +24490,20 @@ interactions: workforce integrations\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"passwordCredentials\":[],\"resourceSpecificApplicationPermissions\":[{\"description\":\"Allows the app to read user AI enterprise interactions, without a signed-in user.\",\"displayName\":\"Read user AI enterprise interactions.\",\"id\":\"10d712aa-b4cd-4472-b0ba-6196e04c344f\",\"isEnabled\":true,\"value\":\"AiEnterpriseInteraction.Read.User\"},{\"description\":\"Allows + the teams-app to read all aiInsights for calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all AI Insights for calls + where the Teams application is installed.\",\"id\":\"ff9d3910-ca91-4e7f-843f-d44ab36a961a\",\"isEnabled\":true,\"value\":\"CallAiInsights.Read.Chat\"},{\"description\":\"Allows + the teams-app to read all recordings of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all recordings of calls + where the Teams application is installed.\",\"id\":\"22748df0-bd8c-4626-aad9-6dab421b33e4\",\"isEnabled\":true,\"value\":\"CallRecordings.Read.Chat\"},{\"description\":\"Allows the app to access media streams in calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Access media streams in calls associated with this chat or meeting\",\"id\":\"e716890c-c30a-4ac3-a0e3-551e7d9e8deb\",\"isEnabled\":true,\"value\":\"Calls.AccessMedia.Chat\"},{\"description\":\"Allows the app to join calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Join calls associated with this chat or meeting\",\"id\":\"a01e73f1-94da-4f6d-9b73-02e4ea65560b\",\"isEnabled\":true,\"value\":\"Calls.JoinGroupCalls.Chat\"},{\"description\":\"Allows + the Teams app to read all transcripts of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all transcripts of calls + where the Teams app is installed.\",\"id\":\"7990a5df-4c51-43ea-939c-3e8b18d6ddad\",\"isEnabled\":true,\"value\":\"CallTranscripts.Read.Chat\"},{\"description\":\"Allows the app to create channels in this team, without a signed-in user.\",\"displayName\":\"Create channels in this team\",\"id\":\"65af85d7-62bb-4339-a206-7160fd427454\",\"isEnabled\":true,\"value\":\"Channel.Create.Group\"},{\"description\":\"Allows the app to delete this team's channels, without a signed-in user.\",\"displayName\":\"Delete @@ -26255,10 +24556,16 @@ interactions: and write this chat's settings\",\"id\":\"ed928a9c-7530-496a-a624-4c0a460ab3ed\",\"isEnabled\":true,\"value\":\"ChatSettings.ReadWrite.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's members, without a signed-in user.\",\"displayName\":\"Read this group's members\",\"id\":\"0a8ce3c7-89dd-46cf-b2c3-5ef0064437a8\",\"isEnabled\":true,\"value\":\"Member.Read.Group\"},{\"description\":\"Allows + the app to read this meeting and subscribe to meeting call updates.\",\"displayName\":\"Read + this meeting and subscribe to meeting call updates .\",\"id\":\"f991ed3f-9617-4d8d-b06c-d18d9fcbcf2a\",\"isEnabled\":true,\"value\":\"OnlineMeeting.Read.Chat\"},{\"description\":\"Allows the app to read basic properties, such as name, schedule, organizer, join link, and start or end notifications, of meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read basic properties of meetings associated with this chat\",\"id\":\"eda8d262-4e6e-4ff6-a7ba-a2fb50535165\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadBasic.Chat\"},{\"description\":\"Allows + the app to manage this online meeting, and subscribe to meeting call updates.\",\"displayName\":\"Manage + this meeting and subscribe to meeting call updates.\",\"id\":\"93400bb4-2282-4371-a745-a86d64c966d0\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadWrite.Chat\"},{\"description\":\"Read + attendance reports & attendance records for this webinar or town hall.\",\"displayName\":\"Read + virtual event artifacts\",\"id\":\"c5d06837-8c0d-42fc-9e49-545e3f941261\",\"isEnabled\":true,\"value\":\"OnlineMeetingArtifact.Read.Chat\"},{\"description\":\"Allows the app to send notifications inside meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Send notifications in the meetings associated with this chat\",\"id\":\"d9837fe0-9c31-4faa-8acb-b10874560161\",\"isEnabled\":true,\"value\":\"OnlineMeetingNotification.Send.Chat\"},{\"description\":\"Allows @@ -26268,9 +24575,9 @@ interactions: with this chat\",\"id\":\"6324a770-185c-4b4f-be13-2d9a1668e6eb\",\"isEnabled\":true,\"value\":\"OnlineMeetingParticipant.Read.Chat\"},{\"description\":\"Allows the app to read recordings of the meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read the recordings of the meetings - associated with this chat\\u00A0\",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows + associated with this chat \",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows the app to read transcripts of the meetings associated with this chat, without - a signed-in user.\\u00A0\",\"displayName\":\"Read the transcripts of the meetings + a signed-in user. \",\"displayName\":\"Read the transcripts of the meetings associated with this chat\",\"id\":\"8c477e19-f0f7-45f9-ae72-604f77a599e3\",\"isEnabled\":true,\"value\":\"OnlineMeetingTranscript.Read.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's owners, without a signed-in user.\",\"displayName\":\"Read this group's owners\",\"id\":\"70d5316c-9b27-4057-a650-3b0fe49002ab\",\"isEnabled\":true,\"value\":\"Owner.Read.Group\"},{\"description\":\"Allows @@ -26317,20 +24624,25 @@ interactions: the app to manage this chat's tabs, without a signed-in user.\",\"displayName\":\"Manage this chat's tabs\",\"id\":\"d583f4d7-57da-4b2c-9744-253e9ec3c7be\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Chat\"},{\"description\":\"Allows the app to manage this team's tabs, without a signed-in user.\",\"displayName\":\"Manage - this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"}],\"samlSingleSignOnSettings\":{\"relayState\":null},\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" + this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"},{\"description\":\"Read + information for this webinars or town halls, including schedules, speakers, + and event settings and webinar registrations.\",\"displayName\":\"Read virtual + event details\",\"id\":\"298266a0-fbf7-4804-b988-5a54e61566c8\",\"isEnabled\":true,\"value\":\"VirtualEvent.Read.Chat\"},{\"description\":\"Register + attendees and cancel registrations for this webinar.\",\"displayName\":\"Manage + virtual event registrations\",\"id\":\"0e646cc8-6b07-4030-9a41-a7db4644b4cc\",\"isEnabled\":true,\"value\":\"VirtualEventRegistration-Anon.ReadWrite.Chat\"}],\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" headers: cache-control: - no-cache content-length: - - '550263' + - '676759' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:01 GMT + - Wed, 24 Dec 2025 05:49:46 GMT odata-version: - '4.0' request-id: - - 97a30b96-0166-4123-9c1b-8b2fd466be76 + - 235a4bbf-ca03-43f3-8392-0ee29c79f2d6 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -26338,7 +24650,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Japan East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"TY1PEPF00006070"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF00001309"}}' x-ms-resource-unit: - '1' status: @@ -26358,9 +24670,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/e1214564-a5a1-47b7-94fc-ac2f909af8f2/appRoleAssignments + uri: https://graph.microsoft.com/v1.0/servicePrincipals/82cfc56f-e4de-4f41-9f66-7bdee8ad3d43/appRoleAssignments response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#appRoleAssignments","value":[]}' @@ -26372,11 +24684,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:03 GMT + - Wed, 24 Dec 2025 05:49:47 GMT odata-version: - '4.0' request-id: - - 02cc8ccf-4a3e-4742-b110-11caacad3a31 + - 57d72436-c3e8-4f40-83dd-2e858a4b09a4 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -26384,7 +24696,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Japan East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"TY1PEPF0000C0E3"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF00002016"}}' x-ms-resource-unit: - '2' status: @@ -26404,30 +24716,30 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2025-04-01 response: body: string: "{\r\n \"name\": \"clisqlvm000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n - \ \"principalId\": \"e1214564-a5a1-47b7-94fc-ac2f909af8f2\",\r\n \"tenantId\": - \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"userAssignedIdentities\": + \ \"principalId\": \"82cfc56f-e4de-4f41-9f66-7bdee8ad3d43\",\r\n \"tenantId\": + \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -26440,7 +24752,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"6\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -26448,17 +24760,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3600' + - '3591' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:03 GMT + - Wed, 24 Dec 2025 05:49:48 GMT etag: - '"6"' expires: @@ -26474,16 +24786,16 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 972976B7B489496E876B9D487B832F93 Ref B: TYO201100113031 Ref C: 2025-04-02T09:38:04Z' + - 'Ref A: 1B292E1FD6134F039694FDDD1A56125D Ref B: SG2AA1070301036 Ref C: 2025-12-24T05:49:47Z' status: code: 200 message: '' - request: - body: '{"identity": {"type": "UserAssigned"}}' + body: '{"identity": {"userAssignedIdentities": null, "type": "UserAssigned"}}' headers: Accept: - application/json @@ -26494,13 +24806,13 @@ interactions: Connection: - keep-alive Content-Length: - - '38' + - '70' Content-Type: - application/json ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -26509,19 +24821,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -26534,7 +24846,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"7\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -26542,21 +24854,21 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f8309545-25dd-4944-9753-f8da6b64c1c5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834879633101&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=eW-BsozlMZHKPq7t3STBTdraPJLcAgcIOdEG-0hW3TR4jZgAysGx-kz3Jp2YqtrcNIyo1W3VjUj5rPOUZCUEQQoIwUdJx2tkYmMu-K7-Pdudsd-fvtvHPyeLItKRzdIPZOZs7NMwQ0Kp9Xr_ZJ3JRANvPw7CIDAeu-umkh27IDl5C5iJfq2KKcbgqfqDS-rQMyjWzUqIoYlIrlmbhP_BZ7_GEGBik5-048fiC4QJWc_LeRtINeF1L_QqQHmluvdxrbR-DJg1yC_7jy4tbNRynN1VqAGfGb4KOcVT0Iqp-DA_21CWzlgoJTFVZYyzu2Za8xV1A4tj6UYLZQu8lTvVjQ&h=cjYNQrL5bTWv_uSOZrSQNLWeeZ_8MUbpXZRh3aj9toE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2036bd72-66bd-468e-8411-5e6e4c737d21?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521893832593&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=Bh2fHRxGb6Ak7G-5KG-1EDqaOq8565EC-mr9ImRCY6nru-ECnK4nlL8lFVdGiklbY_CEKP4qVYvTIqZ4XbMGyJz7dy7lFHBhOD3ADxsw7SiI-udb4BnHVrLdjusflpuyba2WdwTBIQa0mANJDQTvoAaXi9Foc8e3FB7C-89BCdDZmiOl93jo8u9HhgOQYRpfVyMLm6--7XTomnefawYe1lZPoGMA5acBxSNe_QgW4J_hwAmxd0YoUqYGWkD74zMzf5aKupWqGgsg6qad9Bjyx75KXWqm708yxlmso_Sz-knR7QClhL-UhmR96884RhnVVRqgZQd3T0tiDlF174FP4A&h=FQYOtPq8Gr7yj5YGLOLrAhz0A0bA3M-lKmYi2J5af94 cache-control: - no-cache content-length: - - '3466' + - '3457' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:08 GMT + - Wed, 24 Dec 2025 05:49:49 GMT etag: - '"7"' expires: @@ -26572,7 +24884,7 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/acb5db8a-b480-4f10-bed0-eef5add0f8e4 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/53b1eb7c-d802-4048-bf3a-9fbc40459fdf x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: @@ -26580,7 +24892,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 75D813105F5F43C2BE32EFAE13C9A6B0 Ref B: TYO201151004042 Ref C: 2025-04-02T09:38:05Z' + - 'Ref A: 713C37BED3214716924AB80F38C5FABA Ref B: SG2AA1040519052 Ref C: 2025-12-24T05:49:48Z' status: code: 200 message: '' @@ -26598,13 +24910,13 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f8309545-25dd-4944-9753-f8da6b64c1c5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834879633101&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=eW-BsozlMZHKPq7t3STBTdraPJLcAgcIOdEG-0hW3TR4jZgAysGx-kz3Jp2YqtrcNIyo1W3VjUj5rPOUZCUEQQoIwUdJx2tkYmMu-K7-Pdudsd-fvtvHPyeLItKRzdIPZOZs7NMwQ0Kp9Xr_ZJ3JRANvPw7CIDAeu-umkh27IDl5C5iJfq2KKcbgqfqDS-rQMyjWzUqIoYlIrlmbhP_BZ7_GEGBik5-048fiC4QJWc_LeRtINeF1L_QqQHmluvdxrbR-DJg1yC_7jy4tbNRynN1VqAGfGb4KOcVT0Iqp-DA_21CWzlgoJTFVZYyzu2Za8xV1A4tj6UYLZQu8lTvVjQ&h=cjYNQrL5bTWv_uSOZrSQNLWeeZ_8MUbpXZRh3aj9toE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2036bd72-66bd-468e-8411-5e6e4c737d21?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521893832593&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=Bh2fHRxGb6Ak7G-5KG-1EDqaOq8565EC-mr9ImRCY6nru-ECnK4nlL8lFVdGiklbY_CEKP4qVYvTIqZ4XbMGyJz7dy7lFHBhOD3ADxsw7SiI-udb4BnHVrLdjusflpuyba2WdwTBIQa0mANJDQTvoAaXi9Foc8e3FB7C-89BCdDZmiOl93jo8u9HhgOQYRpfVyMLm6--7XTomnefawYe1lZPoGMA5acBxSNe_QgW4J_hwAmxd0YoUqYGWkD74zMzf5aKupWqGgsg6qad9Bjyx75KXWqm708yxlmso_Sz-knR7QClhL-UhmR96884RhnVVRqgZQd3T0tiDlF174FP4A&h=FQYOtPq8Gr7yj5YGLOLrAhz0A0bA3M-lKmYi2J5af94 response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:38:07.6171493+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"f8309545-25dd-4944-9753-f8da6b64c1c5\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:49:49.3150896+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"2036bd72-66bd-468e-8411-5e6e4c737d21\"\r\n}" headers: cache-control: - no-cache @@ -26613,7 +24925,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:08 GMT + - Wed, 24 Dec 2025 05:49:49 GMT expires: - '-1' pragma: @@ -26627,13 +24939,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/6a1b9779-b991-4c64-8046-48b0885d52be + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/48d6a52e-fbe6-4c65-80d2-bd2164375026 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14993 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: AD74C57A0003467C81333C9BCD0BCF4B Ref B: TYO201151004042 Ref C: 2025-04-02T09:38:09Z' + - 'Ref A: 7A9473B865724D8890656D7C739ECD9B Ref B: SG2AA1040517052 Ref C: 2025-12-24T05:49:50Z' status: code: 200 message: '' @@ -26651,14 +24963,14 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f8309545-25dd-4944-9753-f8da6b64c1c5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638791834879633101&c=MIIHpTCCBo2gAwIBAgITOgSvQhYJhJv3upoQdAAEBK9CFjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwMTIyMDMwMTU5WhcNMjUwNzIxMDMwMTU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO17fDEiEOGH85D6qKUDJHIVDhcCjC2pu4JSSnkzGvOfrDCdUzVb55WbvUJigZShRYx9KK2Tifd8u0x9mEr-BqCG740-56xJ0FwyN5eybwhvEZ37UsLxhboIFxyx8uV2cqjMOs-Wr3aVNi8bKw0dtj3MtKzSA4Jq4N4u6-4-Ve8zwiJ_jiBJD5vLZNVRVztWgP8QjyVPSwjglbSddVuTWXJSQakaWh1cPVGHgxxfUaOmZDxb9JexQGcMwciHiIFG5kA_MAl6kb1azqKp2PFoOeWH8ByQpEwrsmsQWO7ccFQjKlu5nqLgOblLusGnyq9Vj9AEge3hXfM-KgADwgsXhYkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQqlNOqQcSYZM1Po0mRxKKD3_DOajAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFtR1erRcnsRy81VZmW7vRJcTBeMa0QB2qPhaTv9xWMZZOO66KX4BS-2T-NOp4JpCPxajSVb7F0sqEEzzC9vk-T0I_jwfthGmZIpEpGJ1TwIN6hgdxae4FN0YxjZilZ1-XJmRty4se4EkXWVaQcNOG5rxRK2CdhIkpt0W_PBONwCrQMdfpnbGiVXsZZWKvdCtsflEnI9H052zGSlCHXFA79czpOAtnaM2y7VpcgWWcwfQoxrlRc9j2iOK6k-5eQ4vR-2ax5Dz8pS4SjHx6OUFXJPIVjXWQ3Gy15ex5ORHBva_2bbIfAjhFE6f1KdMHw8ippUrN2jpPlixMwyULn6sdQ&s=eW-BsozlMZHKPq7t3STBTdraPJLcAgcIOdEG-0hW3TR4jZgAysGx-kz3Jp2YqtrcNIyo1W3VjUj5rPOUZCUEQQoIwUdJx2tkYmMu-K7-Pdudsd-fvtvHPyeLItKRzdIPZOZs7NMwQ0Kp9Xr_ZJ3JRANvPw7CIDAeu-umkh27IDl5C5iJfq2KKcbgqfqDS-rQMyjWzUqIoYlIrlmbhP_BZ7_GEGBik5-048fiC4QJWc_LeRtINeF1L_QqQHmluvdxrbR-DJg1yC_7jy4tbNRynN1VqAGfGb4KOcVT0Iqp-DA_21CWzlgoJTFVZYyzu2Za8xV1A4tj6UYLZQu8lTvVjQ&h=cjYNQrL5bTWv_uSOZrSQNLWeeZ_8MUbpXZRh3aj9toE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2036bd72-66bd-468e-8411-5e6e4c737d21?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639021521893832593&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=Bh2fHRxGb6Ak7G-5KG-1EDqaOq8565EC-mr9ImRCY6nru-ECnK4nlL8lFVdGiklbY_CEKP4qVYvTIqZ4XbMGyJz7dy7lFHBhOD3ADxsw7SiI-udb4BnHVrLdjusflpuyba2WdwTBIQa0mANJDQTvoAaXi9Foc8e3FB7C-89BCdDZmiOl93jo8u9HhgOQYRpfVyMLm6--7XTomnefawYe1lZPoGMA5acBxSNe_QgW4J_hwAmxd0YoUqYGWkD74zMzf5aKupWqGgsg6qad9Bjyx75KXWqm708yxlmso_Sz-knR7QClhL-UhmR96884RhnVVRqgZQd3T0tiDlF174FP4A&h=FQYOtPq8Gr7yj5YGLOLrAhz0A0bA3M-lKmYi2J5af94 response: body: - string: "{\r\n \"startTime\": \"2025-04-02T09:38:07.6171493+00:00\",\r\n \"endTime\": - \"2025-04-02T09:38:13.0703232+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f8309545-25dd-4944-9753-f8da6b64c1c5\"\r\n}" + string: "{\r\n \"startTime\": \"2025-12-24T05:49:49.3150896+00:00\",\r\n \"endTime\": + \"2025-12-24T05:49:53.2995688+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2036bd72-66bd-468e-8411-5e6e4c737d21\"\r\n}" headers: cache-control: - no-cache @@ -26667,7 +24979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:39 GMT + - Wed, 24 Dec 2025 05:50:21 GMT expires: - '-1' pragma: @@ -26681,13 +24993,13 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/e9ce505b-2c82-4591-98b2-bd77fa8477b2 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/64c40ede-7da8-4493-9f27-0ae256920fbb x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14985 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3AD7CD468614429C89C6755EEBD8276A Ref B: TYO201151004042 Ref C: 2025-04-02T09:38:39Z' + - 'Ref A: 4444C3C555734A11AA9F968F0BA4FBDA Ref B: SG2AA1040517023 Ref C: 2025-12-24T05:50:21Z' status: code: 200 message: '' @@ -26705,7 +25017,7 @@ interactions: ParameterSetName: - -n -g --identities User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -26714,19 +25026,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -26739,7 +25051,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"7\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -26747,17 +25059,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:39 GMT + - Wed, 24 Dec 2025 05:50:22 GMT etag: - '"7"' expires: @@ -26773,11 +25085,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23988,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;29 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: AB15CEFBD0BB47D5BC6B96C0885C899E Ref B: TYO201151004042 Ref C: 2025-04-02T09:38:39Z' + - 'Ref A: E5A2B1117CDB431FA767389271310BE2 Ref B: SG2AA1040515029 Ref C: 2025-12-24T05:50:22Z' status: code: 200 message: '' @@ -26795,7 +25107,7 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003?api-version=2024-11-01 response: @@ -26804,19 +25116,19 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/attached_msi\": - {\r\n \"principalId\": \"3289ca6d-17dc-43d7-99ab-55c2aa49338a\",\r\n - \ \"clientId\": \"86410484-5e98-4363-a684-f6dd495c2cd0\"\r\n }\r\n + {\r\n \"principalId\": \"562c81c5-d273-4843-9627-c0944d91e825\",\r\n + \ \"clientId\": \"7d99798f-4925-4e63-836d-e264119292c0\"\r\n }\r\n \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_DS2_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"b5e53365-1b68-4004-b1df-c8fe7a6eb4d6\",\r\n \"storageProfile\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"6d3f3c35-8e25-4ffd-9446-88b01197bd9c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \ \"offer\": \"sql2022-ws2022\",\r\n \"sku\": \"enterprise-gen2\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.250313\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.0.251107\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": - \"clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\",\r\n \"createOption\": + \"clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_OsDisk_1_c244139f6e13444faecd444d406fe2a7\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/disks/clisqlvm000003_disk1_fddb63693fba4bb4abce806a0d019f8a\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clisqlvm000003\",\r\n @@ -26829,7 +25141,7 @@ interactions: {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Network/networkInterfaces/clisqlvm000003VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-04-02T09:30:06.1262993+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2025-12-24T05:42:02.4492556+00:00\"\r\n },\r\n \"etag\": \"\\\"7\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"SqlIaasExtension\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_aad000001/providers/Microsoft.Compute/virtualMachines/clisqlvm000003/extensions/SqlIaasExtension\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -26837,17 +25149,17 @@ interactions: true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.SqlServer.Management\",\r\n \"type\": \"SqlIaaSAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": - {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":1748381627}}\r\n + {\"SqlManagement\":{\"IsEnabled\":false},\"DeploymentTokenSettings\":{\"DeploymentToken\":140791993}}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3467' + - '3458' content-type: - application/json; charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:40 GMT + - Wed, 24 Dec 2025 05:50:22 GMT etag: - '"7"' expires: @@ -26863,11 +25175,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23986,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;28 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C92D99C022974B4FB5B851FE0B2F4E0C Ref B: TYO201100116019 Ref C: 2025-04-02T09:38:40Z' + - 'Ref A: 79C7124F835C44F2AC7C3DB668DC90D8 Ref B: SG2AA1040519062 Ref C: 2025-12-24T05:50:23Z' status: code: 200 message: '' @@ -26885,9 +25197,9 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/3289ca6d-17dc-43d7-99ab-55c2aa49338a/transitiveMemberOf/microsoft.graph.directoryRole + uri: https://graph.microsoft.com/v1.0/servicePrincipals/562c81c5-d273-4843-9627-c0944d91e825/transitiveMemberOf/microsoft.graph.directoryRole response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryRoles","value":[]}' @@ -26899,11 +25211,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:42 GMT + - Wed, 24 Dec 2025 05:50:23 GMT odata-version: - '4.0' request-id: - - 8c6013a9-e92d-4eff-91f0-25a535eeb6d4 + - debc788b-f85b-4e9c-bc3c-7995e5fe41a1 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -26911,7 +25223,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Japan East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"TY1PEPF00006054"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF0001836C"}}' x-ms-resource-unit: - '2' status: @@ -26931,14 +25243,14 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=displayName%20eq%20'Microsoft%20Graph' response: body: - string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"a3efc889-f1b7-4532-9e01-91e32d1039f4\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft - Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":null,\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft - Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"Microsoft.Azure.AgregatorService\",\"https://dod-graph.microsoft.us\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + string: "{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals\",\"value\":[{\"id\":\"980db52a-afb6-4420-b0b2-23bf76ce409b\",\"deletedDateTime\":null,\"accountEnabled\":true,\"alternativeNames\":[],\"appDisplayName\":\"Microsoft + Graph\",\"appDescription\":null,\"appId\":\"00000003-0000-0000-c000-000000000000\",\"applicationTemplateId\":null,\"appOwnerOrganizationId\":\"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\"appRoleAssignmentRequired\":false,\"createdDateTime\":\"2025-11-19T22:28:39Z\",\"description\":null,\"disabledByMicrosoftStatus\":null,\"displayName\":\"Microsoft + Graph\",\"homepage\":null,\"loginUrl\":null,\"logoutUrl\":null,\"notes\":null,\"notificationEmailAddresses\":[],\"preferredSingleSignOnMode\":null,\"preferredTokenSigningKeyThumbprint\":null,\"replyUrls\":[],\"servicePrincipalNames\":[\"00000003-0000-0000-c000-000000000000/ags.windows.net\",\"00000003-0000-0000-c000-000000000000\",\"https://canary.graph.microsoft.com\",\"https://graph.microsoft.com\",\"https://ags.windows.net\",\"https://graph.microsoft.us\",\"https://graph.microsoft.com/\",\"https://dod-graph.microsoft.us\",\"https://canary.graph.microsoft.com/\",\"https://graph.microsoft.us/\",\"https://dod-graph.microsoft.us/\"],\"servicePrincipalType\":\"Application\",\"signInAudience\":\"AzureADMultipleOrgs\",\"tags\":[],\"tokenEncryptionKeyId\":null,\"samlSingleSignOnSettings\":null,\"addIns\":[],\"appRoles\":[{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.\",\"displayName\":\"Read all access reviews\",\"id\":\"d07a8cc0-3d51-4b77-b3b0-32704d1f69fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AccessReview.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, update, delete and perform actions on access reviews, reviewers, @@ -26955,6 +25267,90 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.\",\"displayName\":\"Read and write all administrative units\",\"id\":\"5eb59dd3-1da2-4329-8733-9dabdc435916\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent cards and their skills in your organization's Agent + Registry without a signed-in user.\",\"displayName\":\"Read all agent cards + in Agent Registry\",\"id\":\"aec9e0a0-6f46-4150-a9f7-05e9e3e87399\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent cards and manage their + skills in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all agent cards in Agent Registry\",\"id\":\"ef566853-42d6-45a5-bed9-5ccb82c98b4f\",\"isEnabled\":false,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent cards that designate the calling app as their + manager and manage their skills in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent cards + in Agent Registry\",\"id\":\"9c4a07db-e0c1-4fb0-8e85-dfd8ae3b8201\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCard.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent card manifests in your organization's Agent Registry + without a signed-in user.\",\"displayName\":\"Read all agent card manifests + in Agent Registry\",\"id\":\"3ee18438-e6e5-4858-8f1c-d7b723b45213\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write to all agent card manifests in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent card manifests in Agent Registry\",\"id\":\"228b1a03-f7ca-4348-b50d-e8a547ab61af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write agent card manifests that name it as manager in + your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write managed-by agent card manifests in Agent Registry\",\"id\":\"77f6034c-52f5-4526-9fa1-d55a67e72cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCardManifest.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all collections and their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read all collections + in Agent Registry\",\"id\":\"e65ee1da-d1d5-467b-bdd0-3e9bb94e6e0c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all collections and manage their + membership in your organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + and write all collections in Agent Registry\",\"id\":\"feb31d7d-a227-4487-898c-e014840d07b3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete collections that designate the + calling app as their manager and manage their membership in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + managed-by collections in Agent Registry\",\"id\":\"2e0fb698-9996-479f-926b-ce63f4397829\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentCollection.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create agent identities, even if the app is not the parent agent + identity blueprint.\",\"displayName\":\"Create agent identities without an + agent blueprint parent\",\"id\":\"ad25cc1d-84d8-47df-a08e-b34c2e800819\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create linked agent identities without a signed-in user.\",\"displayName\":\"Create + agent identities linked to itself.\",\"id\":\"4c390976-b2b7-42e0-9187-c6be3bead001\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.CreateAsManager\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to delete and restore agent identities without a signed-in user.\",\"displayName\":\"Delete + and restore agent identities\",\"id\":\"5b016f9b-18eb-41d4-869a-66931914d1c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to enable or disable agent identities without a signed-in user.\",\"displayName\":\"Enable + or disable agent identities\",\"id\":\"69ee0943-4fa4-4ec8-8e52-d12e4ea661a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identities without a signed-in user.\",\"displayName\":\"Read + all agent identities\",\"id\":\"b2b8f011-2898-4234-9092-5059f6c1ebfa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app read, update, and delete agent identities without a signed-in user.\",\"displayName\":\"Read + and write all agent identities\",\"id\":\"dcf7150a-88d4-4fe6-9be1-c2744c455397\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint credentials without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint credentials\",\"id\":\"0510736e-bdfb-4b37-9a1f-89b4a074763a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprints without a signed-in user.\",\"displayName\":\"Create + agent identity blueprints.\",\"id\":\"ea4b2453-ad2d-4d94-9155-10d5d9493ce9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"3f80b699-6405-4e36-a4df-4f19950ff91e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent identity blueprints without a signed-in user.\",\"displayName\":\"Read + all agent identity blueprints\",\"id\":\"7547a7d1-36fa-4479-9c31-559a600eaa4f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprints without a signed-in + user.\",\"displayName\":\"Read and write all agent identity blueprints.\",\"id\":\"7fddd33b-d884-4ec0-8696-72cff90ff825\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint authorization and authentication properties + without a signed-in user.\",\"displayName\":\"Update agent identity blueprint + authorization and authentication properties\",\"id\":\"19202363-278e-49c2-bf00-391e2ba00881\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + updating agent identity blueprint branding without a signed-in user.\",\"displayName\":\"Update + agent identity blueprint branding\",\"id\":\"76232daa-a1e4-4544-b664-495a006513bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + creating new agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"8959696d-d07e-4916-9b1e-3ba9ce459161\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + deleting or restoring agent identity blueprints without a signed-in user.\",\"displayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f86a2dd8-9298-4675-bd78-f5a3572da2d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + enabling or disabling agent identity blueprint principals without a signed-in + user.\",\"displayName\":\"Enable or disable agent identity blueprint principals.\",\"id\":\"a0bdd23d-8b19-4682-b428-574d96527c6f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + reading agent identity blueprint principals without a signed-in user.\",\"displayName\":\"Read + agent identity blueprint principals.\",\"id\":\"9361dea9-4524-493d-941d-f1b65aaf6c7c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, update, and delete agent identity blueprint principals without + a signed-in user.\",\"displayName\":\"Read and write all agent identity blueprint + principals.\",\"id\":\"3bc933bc-8b4d-4cb6-ac49-b73774299250\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update agent ID user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"b782c9ad-6f2b-4894-a21b-72bf22417f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update ID agent user profiles and read basic company properties + without a signed in user.\",\"displayName\":\"Read and write all agent ID + users' full profiles\",\"id\":\"4aa6e624-eee0-40ab-bdd8-f9639038a614\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all agent instances and their related collections in your + organization's Agent Registry without a signed-in user.\",\"displayName\":\"Read + all agent instances in Agent Registry\",\"id\":\"799a4732-85b8-4c67-b048-75f0e88a232b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all agent instances in your organization's + Agent Registry without a signed-in user.\",\"displayName\":\"Read and write + all agent instances in Agent Registry\",\"id\":\"07abdd95-78dc-4353-bd32-09f880ea43d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete agent instances that designate + the calling app as their manager in your organization's Agent Registry without + a signed-in user.\",\"displayName\":\"Read and write managed-by agent instances + in Agent Registry\",\"id\":\"782ab1bf-24f1-4c27-8bbc-2006d42792a6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AgentInstance.ReadWrite.ManagedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read terms of use agreements, without a signed in user.\",\"displayName\":\"Read all terms of use agreements\",\"id\":\"2f3e6f8c-093b-4c57-a58b-ba5ce494a169\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Agreement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write terms of use agreements, without a signed in user.\",\"displayName\":\"Read @@ -26978,12 +25374,14 @@ interactions: and write the remote desktop security configuration for all apps\",\"id\":\"3be0012a-cc4e-426b-895b-f9c836bf6381\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application-RemoteDesktopConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all applications and service principals without a signed-in user.\",\"displayName\":\"Read all applications\",\"id\":\"9a5d68dd-52b0-4cc2-bd40-abcf44ac3a30\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update all apps in your organization, without a signed-in + user.\",\"displayName\":\"Read and update all apps\",\"id\":\"fc023787-fd04-4e44-9bc7-d454f00c0f0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadUpdate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.\",\"displayName\":\"Read and write all applications\",\"id\":\"1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in - user. \\u00A0It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage + user. It cannot update any apps that it is not an owner of.\",\"displayName\":\"Manage apps that this app creates or owns\",\"id\":\"18a4783c-866b-4cc7-a460-3d5e5662c884\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Application.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without @@ -26998,7 +25396,11 @@ interactions: a signed-in user.\",\"displayName\":\"Read attack simulation data of an organization\",\"id\":\"93283d0a-6322-4fa8-966b-8c121624760d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, and update attack simulation and training data for an organization without a signed-in user.\",\"displayName\":\"Read, create, - and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and update all attack simulation data of an organization\",\"id\":\"e125258e-8c8a-42a8-8f55-ab502afa52f3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + activity audit log from the audit store.\",\"displayName\":\"Read activity + audit log from the audit store.\",\"id\":\"99bc85fb-e857-4220-9f8c-3a1c83148d2e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"displayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"f6318678-2713-4bb6-b123-233e7336c1bd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query your audit log activities, without a signed-in user.\",\"displayName\":\"Read all audit log data\",\"id\":\"b0afded3-3588-46d8-8b3d-9842eff778da\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"AuditLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and query audit logs from Dynamics CRM workload, without a @@ -27093,6 +25495,8 @@ interactions: basic details of calendars in all mailboxes \",\"id\":\"8ba4a692-bc31-4128-9094-475872af8a53\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete events of all calendars without a signed-in user.\",\"displayName\":\"Read and write calendars in all mailboxes\",\"id\":\"ef54d2bf-783f-4e0f-bca1-3210c0444d99\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calendars.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all AI Insights for all calls, without a signed-in user.\",\"displayName\":\"Read + all AI Insights for calls.\",\"id\":\"792b782b-7822-4b92-8103-77e44f2f706c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallAiInsights.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read delegation settings of you\",\"displayName\":\"Read delegation settings\",\"id\":\"5aa33e77-b893-495e-bdc5-4bf6f27d42a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallDelegation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write delegation settings of you\",\"displayName\":\"Read @@ -27103,6 +25507,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read all call events\",\"id\":\"1abb026f-7572-49f6-9ddd-ad61cbba181e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallEvents.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all PSTN and direct routing call log data without a signed-in user.\",\"displayName\":\"Read PSTN and direct routing call log data\",\"id\":\"a2611786-80b3-417e-adaa-707d4261a5f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecord-PstnCalls.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call recordings for all calls without a signed-in user.\",\"displayName\":\"Read + all call recordings\",\"id\":\"ce8fb1f1-5e1f-44a0-b102-4ec28454d0dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecordings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read call records for all calls and online meetings without a signed-in user.\",\"displayName\":\"Read all call records\",\"id\":\"45bbb07e-7321-4fd7-a8f6-3ff27e6a81c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallRecords.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to get direct access to media streams in a call, without a signed-in @@ -27114,13 +25520,15 @@ interactions: meetings in your organization, without a signed-in user.\",\"displayName\":\"Initiate outgoing group calls from the app\",\"id\":\"4c277553-8a09-487b-8023-29ee378d8324\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.InitiateGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to join group calls and scheduled meetings in your organization, without - a signed-in user. \\u00A0The app will be joined with the privileges of a directory + a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.\",\"displayName\":\"Join group calls and meetings as an app\",\"id\":\"f6b49018-60ab-4f81-83bd-22caeabfed2d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCall.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to anonymously join group calls and scheduled meetings in your organization, - without a signed-in user. \\u00A0The app will be joined as a guest to meetings - in your organization.\",\"displayName\":\"Join group calls and meetings as - a guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. The app will be joined as a guest to meetings in + your organization.\",\"displayName\":\"Join group calls and meetings as a + guest\",\"id\":\"fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Calls.JoinGroupCallAsGuest.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read call transcripts for all calls without a signed-in user.\",\"displayName\":\"Read + all call transcripts\",\"id\":\"4cd61b6d-8692-40bf-9d90-7f38db5e5fce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CallTranscripts.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows to read all Change Management items.\",\"displayName\":\"Read Change Management items\",\"id\":\"418dae40-2b65-4819-900c-519a04e4d278\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChangeManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Create channels in any team, without a signed-in user.\",\"displayName\":\"Create @@ -27145,7 +25553,7 @@ interactions: and write the names, descriptions, and settings of all channels, without a signed-in user.\",\"displayName\":\"Read and write the names, descriptions, and settings of all channels\",\"id\":\"243cded2-bd16-4fd6-a953-ff8177894c3d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create chats without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create chats without a signed-in user. \",\"displayName\":\"Create chats\",\"id\":\"d9c48af6-9ad9-47ad-82c3-63757137b9af\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to delete and recover deleted chats, without a signed-in user.\",\"displayName\":\"Delete and recover deleted chats\",\"id\":\"9c7abde0-eacd-4319-bf9e-35994b1a1717\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Chat.ManageDeletion.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -27206,26 +25614,42 @@ interactions: the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.\",\"displayName\":\"Read and write all consent requests\",\"id\":\"9f1b81a7-0223-4428-bfa4-0bcb5535f27d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all contacts in all mailboxes + without a signed-in user.\",\"displayName\":\"Read and update the on-premises + sync behavior of contacts\",\"id\":\"c8948c23-e66b-42db-83fd-770b71ab78d2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read contacts in all mailboxes\",\"id\":\"089fe4d0-434a-44c5-8827-41ba8a0b17f5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.\",\"displayName\":\"Read and write contacts in all mailboxes\",\"id\":\"6918b873-d17a-4dc1-b314-35f528134491\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Contacts.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"displayName\":\"Process content for + data security, governance and compliance\",\"id\":\"5ad511bf-571c-4ef6-8c3c-85b94b85df98\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"displayName\":\"Process content for data + security, governance and compliance\",\"id\":\"24ceb246-ad29-4680-90b4-3e91ffad15eb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Content.Process.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read + contents activity audit log from the audit store.\",\"displayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"368425e7-6954-4f5a-9d92-90b75bd580c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"displayName\":\"Upload + content activity audit logs to the audit store.\",\"id\":\"2932e07a-3c29-44e4-bb36-6d0fc176387f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ContentActivity.Write\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read packages information without a signed-in user.\",\"displayName\":\"Read + all packages information\",\"id\":\"72f0655d-6228-4ddc-8e1b-164973b9213b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update packages information without a signed-in user.\",\"displayName\":\"Read + and update all packages information\",\"id\":\"ed31732f-9495-47ed-ba3b-4ed0948c1c64\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem without a signed-in user.\",\"displayName\":\"Read cross-tenant basic information\",\"id\":\"cac88765-0581-4025-9725-5ebc13f729ee\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export external user data (e.g. customer content or system-generated + with the current tenant without a signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read + all shared cross-tenant user profiles and export their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to list and query any shared user profile information associated + with the current tenant without a signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant user profiles and export - their data\",\"id\":\"8b919d44-6192-4f3d-8a3b-f86f8069ae3c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to list and query any shared user profile information associated - with the current tenant without a signed-in user.\\u00A0 It also permits the - application to export and remove external user data (e.g. customer content - or system-generated logs), for any user associated with the current tenant - without a signed-in user.\",\"displayName\":\"Read all shared cross-tenant - user profiles and export or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + or delete their data\",\"id\":\"306785c5-c09b-4ba0-a4ee-023f3da165cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's custom authentication extensions without a signed-in user.\",\"displayName\":\"Read all custom authentication extensions\",\"id\":\"88bb2658-5d9e-454f-aacd-a3933e079526\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"CustomAuthenticationExtension.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's custom authentication extensions @@ -27351,10 +25775,15 @@ interactions: all Azure AD recommendations\",\"id\":\"ae73097b-cb2a-4447-b064-5d80f6093921\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update all Azure AD recommendations, without a signed-in user.\",\"displayName\":\"Read and update all Azure AD recommendations\",\"id\":\"0e9eea12-4f01-45f6-9b8d-3ea4c8144158\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read internal federation configuration for a domain.\",\"displayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"c0e5a7b0-e8b7-40a7-b8e0-8249e6ea81d5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"displayName\":\"Create, read, update and delete internal + federation configuration for a domain.\",\"id\":\"64d40371-8d58-4270-bc8a-b4a66de36b9a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all domain properties without a signed-in user.\",\"displayName\":\"Read domains\",\"id\":\"dbb9058a-0e50-45d7-ae91-66909b5d4664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all domain properties without a signed in user. - \\u00A0Also allows the app to add, \\u00A0verify and remove domains.\",\"displayName\":\"Read + \ Also allows the app to add, verify and remove domains.\",\"displayName\":\"Read and write domains\",\"id\":\"7e05723c-0bb0-42da-be95-ae9f08a6e53c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Domain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.\",\"displayName\":\"Read @@ -27366,16 +25795,16 @@ interactions: Education app settings\",\"id\":\"7c9db06a-ec2d-4e7b-a592-5a1e30992566\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Manage the state and settings of all Microsoft education apps.\",\"displayName\":\"Manage education app settings\",\"id\":\"9bc431c3-b8bc-4a8d-a219-40f10f92eff6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAdministration.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments with grades for all users without - a signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read all\\u00A0class assignments without grades for all users without + the app to read all class assignments with grades for all users without a + signed-in user.\",\"displayName\":\"Read all class assignments with grades\",\"id\":\"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all class assignments without grades for all users without a signed-in user.\",\"displayName\":\"Read all class assignments without grades\",\"id\":\"6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments with - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create, read, update and delete all\\u00A0class assignments without - grades for all users without a signed-in user.\",\"displayName\":\"Create, - read, update and delete all\\u00A0class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments with grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments with grades\",\"id\":\"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all class assignments without grades + for all users without a signed-in user.\",\"displayName\":\"Create, read, + update and delete all class assignments without grades\",\"id\":\"f431cc63-a2de-48c4-8054-a34bc093af84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduAssignments.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all modules and resources, without a signed-in user.\",\"displayName\":\"Read all class modules and resources\",\"id\":\"6cdb464c-3a03-40f8-900b-4cb7ea1da9c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduCurricula.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all modules and resources, without a signed-in user.\",\"displayName\":\"Read @@ -27404,6 +25833,14 @@ interactions: and write the organization's roster\",\"id\":\"d1808e82-ce13-47af-ae0d-f9b254e6d58a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EduRoster.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create Viva Engage conversations without a signed-in user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"e1d2136d-eaaf-427a-a7db-f97dbe847c27\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Migration.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage conversations, and to read their properties without + a signed-in user.\",\"displayName\":\"Read all Viva Engage conversations\",\"id\":\"2c495153-cd0e-41b4-9980-3bcecf1ca22f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create Viva Engage conversations, read all conversation properties, + update conversation properties, and delete conversations without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage conversations\",\"id\":\"bfbd4840-fba0-43a7-93a9-465b687e47d0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to list Viva Engage Teams QA conversations, and to read their properties + without a signed-in user.\",\"displayName\":\"Read all Viva Engage Teams QA + conversations\",\"id\":\"d746beae-b46e-446e-924a-5b805a5c4467\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to list all Viva Engage roles and role memberships without a signed-in user.\",\"displayName\":\"Read all Viva Engage roles and role memberships\",\"id\":\"30614864-4114-45ef-bdd9-0dd7894a1cc4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EngagementRole.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to assign Viva Engage role to a user, and remove a Viva Engage role @@ -27420,6 +25857,8 @@ interactions: the app to read or write your organization's authentication event listeners without a signed-in user.\",\"displayName\":\"Read and write all authentication event listeners\",\"id\":\"0edf5e9e-4ce8-468a-8432-d08631d18c43\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"EventListener.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to search the email message trace, without a signed-in user.\",\"displayName\":\"Search + the email message trace\",\"id\":\"89b20d8a-76e2-4057-867b-9961f800b9a4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all external connections without a signed-in user.\",\"displayName\":\"Read all external connections\",\"id\":\"1914711b-a1cb-4793-b019-c2ce0ed21b8c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ExternalConnection.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all external connections without a signed-in user.\",\"displayName\":\"Read @@ -27461,15 +25900,21 @@ interactions: without a signed-in user. The specific file storage containers and the permissions granted to them will be configured in Microsoft 365 by the developer of each container type.\",\"displayName\":\"Access selected file storage containers\",\"id\":\"40dc41bc-0f7e-42ff-89bd-d9516947e474\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainer.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to manage file storage container type registrations without + a signed-in user.\",\"displayName\":\"Access selected file storage container + type registrations\",\"id\":\"2dcc6599-bd30-442b-8f11-90f88ad441dc\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read all group conversations\",\"id\":\"4f0a8235-6f6f-4ec7-9500-34b452a4a0c3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write conversations of the groups this app has access to without a signed-in user.\",\"displayName\":\"Read and write all group conversations\",\"id\":\"6679c91b-820a-4900-ab47-e97b197a89c4\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all groups without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + groups\",\"id\":\"2d9bd318-b883-40be-9df7-63ec4fcdc424\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups without a signed-in user.\",\"displayName\":\"Create groups\",\"id\":\"bf7b1a76-6e77-406b-b258-bf5c7720e98f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read group properties and memberships, and read\\u00A0conversations - for all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read group properties and memberships, and read conversations for + all groups, without a signed-in user.\",\"displayName\":\"Read all groups\",\"id\":\"5b567255-7703-4780-807c-7be8301ae99b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Group.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by @@ -27480,6 +25925,11 @@ interactions: of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.\",\"displayName\":\"Read and write all group memberships\",\"id\":\"dbaae8cf-10b5-4b86-a4a1-f871c94c6695\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupMember.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + without a signed-in user.\",\"displayName\":\"Read all group settings\",\"id\":\"f3c4f514-c65a-43f5-bfce-1735872258dd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects, without a signed-in user.\",\"displayName\":\"Read + and write all group settings\",\"id\":\"546168c3-1183-4281-9491-fafb24dea37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all scenario health monitoring alerts, without a signed-in user.\",\"displayName\":\"Read all scenario health monitoring alert\",\"id\":\"5183ed5d-b7f8-4e9a-915e-dafb46b9cb62\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"HealthMonitoringAlert.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all scenario monitoring alerts, without a signed-in @@ -27499,7 +25949,11 @@ interactions: information\",\"id\":\"6e472fd1-ad78-48da-a0f0-97ab2c6b769e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event - detections.\\u00A0\",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + detections. \",\"displayName\":\"Read and write all risk detection information\",\"id\":\"db06fb33-1953-4b7b-a2ac-f1e2c854f7ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read the risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read all risky agents information\",\"id\":\"4aadfb66-d49a-414a-a883-d8c240b6fa33\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and update risky agents information in your organization without + a signed-in user.\",\"displayName\":\"Read and write risky agents information\",\"id\":\"dca4e4fd-a7cf-4e6f-86d1-d1ec094d766e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all risky service principal information for your organization, without a signed-in user.\",\"displayName\":\"Read all identity risky service principal information\",\"id\":\"607c7344-0eed-41e5-823a-9695ebe1b7b0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyServicePrincipal.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -27510,8 +25964,8 @@ interactions: without a signed in user.\",\"displayName\":\"Read all identity risky user information\",\"id\":\"dc5007c0-2d7d-4c42-879c-2dab87571379\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and update identity risky user information for your organization - without a signed-in user. \\u00A0Update operations include dismissing risky - users.\",\"displayName\":\"Read and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. Update operations include dismissing risky users.\",\"displayName\":\"Read + and write all risky user information\",\"id\":\"656f6061-f9fe-4807-9708-6a2e0934df76\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's user flows, without a signed-in user.\",\"displayName\":\"Read all identity user flows\",\"id\":\"1b0c317f-dd31-4305-9932-259a8b6e8099\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"IdentityUserFlow.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read or write your organization's user flows, without a signed-in @@ -27567,9 +26021,9 @@ interactions: directory, without a signed-in user.\",\"displayName\":\"Read and write all assignments\",\"id\":\"236c1cbd-1187-427f-b0f5-b1852454973b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningAssignedCourse.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all learning content in the organization's directory, without - a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - all learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - without a signed-in user.\",\"displayName\":\"Manage all\\u00A0learning\\u00A0content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user.\",\"displayName\":\"Read all learning content\",\"id\":\"8740813e-d8aa-4204-860e-2a0f8f84dbc8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to manage all learning content in the organization's directory, without + a signed-in user.\",\"displayName\":\"Manage all learning content\",\"id\":\"444d6fcb-b738-41e5-b103-ac4f2a2628a3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningContent.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read data for all self-initiated courses in the organization's directory, without a signed-in user.\",\"displayName\":\"Read all self-initiated courses\",\"id\":\"467524fc-ed22-4356-a910-af61191e3503\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"LearningSelfInitiatedCourse.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -27609,6 +26063,10 @@ interactions: the application to access a subset of lists without a signed in user. The specific lists and the permissions granted will be configured in SharePoint Online.\",\"displayName\":\"Access selected Lists without a signed in user.\",\"id\":\"23c5a9bd-d900-4ecf-be26-a0689755d9e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update, and delete all email, including contents + of non-draft emails in user mailboxes, without a signed-in user. Does not + include permission to send mail.\",\"displayName\":\"Read and write mail in + all mailboxes, including modifying existing non-draft mails\",\"id\":\"e118f1da-5c1c-46cf-bff6-8858d786f46f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail-Advanced.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read mail in all mailboxes without a signed-in user.\",\"displayName\":\"Read mail in all mailboxes\",\"id\":\"810c84a8-4a9e-49e6-bf7d-12d183f40d01\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read basic mail properties in all mailboxes without a signed-in @@ -27622,10 +26080,16 @@ interactions: and write mail in all mailboxes\",\"id\":\"e2a3a72e-5f79-4c64-b1b1-878b674786c9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send mail as any user without a signed-in user.\",\"displayName\":\"Send mail as any user\",\"id\":\"b633e1c5-b582-4048-a93e-9f11b44c7e96\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Mail.Send\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all users' UserConfiguration objects.\",\"displayName\":\"Read + all users' UserConfiguration objects\",\"id\":\"27d9d776-f4d2-426d-80ad-5f22f2b01b0a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to create, read, update and delete all users' UserConfiguration objects.\",\"displayName\":\"Read + and write all users' UserConfiguration objects\",\"id\":\"aa6d92d4-b25a-4640-aefe-3e3231e5e736\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read all the users' mailbox folders\",\"id\":\"99280d24-a782-4793-93cc-0888549957f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all the users' mailbox folders, without signed-in user.\",\"displayName\":\"Read and write all the users' mailbox folders\",\"id\":\"fef87b92-8391-4589-9da7-eb93dab7dc8a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxFolder.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to export all the users' mailbox items, without signed-in user.\",\"displayName\":\"Export + all the users' mailbox items\",\"id\":\"937550e9-33a3-494b-88ae-d9cd394b1fbb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to backup, restore, and modify all mailbox items without a signed-in user.\",\"displayName\":\"Allows the app to perform backup and restore for all mailbox items\",\"id\":\"76577085-e73d-4f1d-b26a-85fb33892327\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"MailboxItem.ImportExport.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -27703,11 +26167,11 @@ interactions: without a signed in user.\",\"displayName\":\"Manage on-premises published resources\",\"id\":\"0b57845e-aa49-4e6f-8109-ce654fffa618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OnPremisesPublishingProfiles.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organization and related resources, without a signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. Related resources include things like subscribed skus and tenant branding + information.\",\"displayName\":\"Read organization information\",\"id\":\"498476ce-e0fe-48b0-b801-37ba7e2685c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write the organization and related resources, without - a signed-in user.\\u00A0Related resources include things like subscribed skus - and tenant branding information.\",\"displayName\":\"Read and write organization + a signed-in user. Related resources include things like subscribed skus and + tenant branding information.\",\"displayName\":\"Read and write organization information\",\"id\":\"292d869f-3427-49a8-9dab-8c70152b74e9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Organization.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read the organizational branding information, without a signed-in user.\",\"displayName\":\"Read organizational branding information\",\"id\":\"eb76ac34-0d62-4454-b97c-185e4250dc20\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"OrganizationalBranding.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -27778,6 +26242,8 @@ interactions: user.\",\"displayName\":\"Read and write telemetry for all workplace devices.\",\"id\":\"27fc435f-44e2-4b30-bf3c-e0ce74aed618\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PlaceDeviceTelemetry.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all your organization's policies without a signed in user.\",\"displayName\":\"Read your organization's policies\",\"id\":\"246dd0d5-5bd0-4def-940b-0421030a5b68\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all authentication method policies for the tenant, without + a signed-in user. \",\"displayName\":\"Read authentication method policies\",\"id\":\"8e3bc81b-d2f3-4b7b-838c-32c88218d2f0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's conditional access policies, without a signed-in user.\",\"displayName\":\"Read your organization's conditional access policies\",\"id\":\"37730810-e9ba-4e46-b07e-8ca78d182097\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.Read.ConditionalAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -27803,8 +26269,8 @@ interactions: without a signed-in user.\",\"displayName\":\"Read and write authentication flow policies\",\"id\":\"25f85f3c-f66c-4205-8cd5-de92dd7f0cec\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write all authentication method policies for the tenant, - without a signed-in user.\\u00A0\",\"displayName\":\"Read and write all authentication - method policies\\u00A0\",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + without a signed-in user. \",\"displayName\":\"Read and write all authentication + method policies \",\"id\":\"29c18626-4985-4dcd-85c0-193eef327366\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's authorization policy without a signed in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.\",\"displayName\":\"Read @@ -27815,9 +26281,13 @@ interactions: the app to read and write your organization's consent requests policy without a signed-in user.\",\"displayName\":\"Read and write your organization's consent request policy\",\"id\":\"999f8c63-0a38-4f1b-91fd-ed1947bdd1a9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read and write your organization's cross tenant access policies + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"displayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities without a signed-in user.\",\"displayName\":\"Read and write your organization's - cross tenant access policies\",\"id\":\"338163d7-f101-4c92-94ba-ca46fe52447c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + M365 cross tenant access capabilities\",\"id\":\"a6325ae7-2b73-4dbd-abed-fbeacfbf8696\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and write your organization's device configuration policies without a signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -27855,7 +26325,7 @@ interactions: includes activity, availability, status note, calendar out-of-office message, time zone and location.\",\"displayName\":\"Read and write presence information for all users\",\"id\":\"83cded22-8297-4ff6-a7fa-e97e9545a259\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Presence.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read printers without a signed-in user.\\u00A0\",\"displayName\":\"Read + the application to read printers without a signed-in user. \",\"displayName\":\"Read printers\",\"id\":\"9709bb33-4549-49d4-8ed9-a8f65e45bb0f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Printer.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update printers without a signed-in user. Does not allow creating (registering) or deleting (unregistering) printers.\",\"displayName\":\"Read @@ -27865,19 +26335,19 @@ interactions: read and update the metadata of print jobs.\",\"displayName\":\"Perform advanced operations on print jobs\",\"id\":\"58a52f47-9e36-4b17-9ebe-ce4ef7f3e6c8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the metadata and document content of print jobs without - a signed-in user.\\u00A0\",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the application to read the metadata of print jobs without a signed-in user.\\u00A0Does - not allow access to print job document content.\",\"displayName\":\"Read basic - information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + a signed-in user. \",\"displayName\":\"Read print jobs\",\"id\":\"ac6f956c-edea-44e4-bd06-64b1b4b9aec9\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read the metadata of print jobs without a signed-in user. + Does not allow access to print job document content.\",\"displayName\":\"Read + basic information for print jobs\",\"id\":\"fbf67eee-e074-4ef7-b965-ab5ce1c1f689\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata and document content of print jobs without a signed-in user.\",\"displayName\":\"Read and write print jobs\",\"id\":\"5114b07b-2898-4de7-a541-53b0004e2e13\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update the metadata of print jobs without a signed-in - user.\\u00A0Does not allow access to print job document content.\",\"displayName\":\"Read + user. Does not allow access to print job document content.\",\"displayName\":\"Read and write basic information for print jobs\",\"id\":\"57878358-37f4-4d3a-8c20-4816e0d457b1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read tenant-wide print settings without a signed-in user.\",\"displayName\":\"Read tenant-wide print settings\",\"id\":\"b5991872-94cf-4652-9765-29535087c6d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read and update print task definitions without a signed-in - user.\\u00A0\",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. \",\"displayName\":\"Read, write and update print task definitions\",\"id\":\"456b71a7-0ee0-4588-9842-c123fcc8f664\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PrintTaskDefinition.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles in your organization, without a signed-in user.\",\"displayName\":\"Read privileged @@ -27928,6 +26398,14 @@ interactions: the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.\",\"displayName\":\"Manage all programs\",\"id\":\"60a901ed-09f7-4aa5-a16e-7dd3d6f9de36\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"displayName\":\"Compute Purview + policies at tenant scope\",\"id\":\"e5a76501-dbb0-492c-ab55-5d09e8837263\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"displayName\":\"Compute Purview + policies for an individual user\",\"id\":\"fe696d63-5e1f-4515-8232-cccc316903c6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProtectionScopes.Compute.User\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and query your provisioning log activities, without a signed-in + user.\",\"displayName\":\"Read all provisioning log data\",\"id\":\"091937d3-3e38-47a1-8649-b2f99d3035f1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ProvisioningLog.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, without a signed-in user.\",\"displayName\":\"Read all @@ -27938,9 +26416,12 @@ interactions: and write all certificate based authentication configurations\",\"id\":\"a2b63618-5350-462d-b1b3-ba6eb3684e26\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"PublicKeyInfrastructure.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows an app to read all question and answers, without a signed-in user.\",\"displayName\":\"Read all Question and Answers \",\"id\":\"ee49e170-1dd1-4030-b44c-61ad6e98f743\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"QnA.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get direct access to real-time enriched data in a meeting, without + a signed-in user.\",\"displayName\":\"Access real-time enriched data in a + meeting as an app\",\"id\":\"abafe00f-ea87-4c63-b8a8-0e7bb0a88144\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read - Records Management configuration,\\u00A0labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + Records Management configuration, labels and policies\",\"id\":\"ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.\",\"displayName\":\"Read and write Records Management configuration, labels and policies\",\"id\":\"eb158f57-df43-4751-8b21-b8932adb3d34\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"RecordsManagement.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -28083,6 +26564,17 @@ interactions: the app to read your organization\u2019s security events without a signed-in user. Also allows the app to update editable properties in security events.\",\"displayName\":\"Read and update your organization\u2019s security events\",\"id\":\"d903a879-88e0-4c09-b0c9-82f6a1333f84\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all the identity security available identity accounts without + a signed-in user.\",\"displayName\":\"Read all identity security available + identity accounts\",\"id\":\"c5bc96f5-b4a1-4cfc-8189-d5f0d772278f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write identity security available actions without a signed-in + user.\",\"displayName\":\"Read and perform all identity security available + actions\",\"id\":\"af2bf46f-7bf1-4be3-8bad-e17e279e8462\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read sensors window auditing configuration without a signed-in + user\",\"displayName\":\"Read sensors window auditing configuration\",\"id\":\"58971758-9844-4fe4-9fba-7e4ce7a659bf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write sensors window auditing configuration without a + signed-in user\",\"displayName\":\"Read and write sensors window auditing + configuration\",\"id\":\"4f1f0deb-08d1-4ffb-8cca-21dfc362b7c0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all the identity security health issues without a signed-in user.\",\"displayName\":\"Read all identity security health issues\",\"id\":\"f8dcd971-5d83-4e1e-aa95-ef44611ad351\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIdentitiesHealth.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write identity security health issues without a signed-in @@ -28100,7 +26592,17 @@ interactions: the app to read all security incidents, without a signed-in user.\",\"displayName\":\"Read all security incidents\",\"id\":\"45cc0394-e837-488b-a098-1918f48d186c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write to all security incidents, without a signed-in user.\",\"displayName\":\"Read - and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + and write to all security incidents\",\"id\":\"34bf0e97-1971-4929-b999-9e2442d941d7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, without + a signed-in user.\",\"displayName\":\"Evaluate sensitivity labels\",\"id\":\"57f0b71b-a759-45a0-9a0f-cc099fbd9a44\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to evaluate all sensitivity label.\",\"displayName\":\"Evaluate labels + tenant scope.\",\"id\":\"986fa56a-6680-4aac-af09-4d1765376739\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels application + scope.\",\"id\":\"3b8e7aad-f6e3-4299-83f8-6fc6a5777f0b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabel.Read\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to get sensitivity labels.\",\"displayName\":\"Get labels tenant scope.\",\"id\":\"e46a01e9-b2cf-4d89-8424-bcdc6dd445ab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SensitivityLabels.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read all Sentiment Survey, without a signed-in user. \",\"displayName\":\"Export + all Sentiment Survey\",\"id\":\"84fa35c1-f997-4c1c-894c-bb52108cfbbf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SentimentSurvey.Export.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Exchange service activity, without a signed-in user.\",\"displayName\":\"Read all Exchange service activity\",\"id\":\"2b655018-450a-4845-81e7-d603b1ebffdb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServiceActivity-Exchange.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all Microsoft 365 Web service activity, without a signed-in @@ -28119,6 +26621,12 @@ interactions: principal endpoints\",\"id\":\"5256681e-b7f6-40c0-8447-2d9db68797a0\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to update service principal endpoints\",\"displayName\":\"Read and update service principal endpoints\",\"id\":\"89c8469c-83ad-45f7-8ff2-6e3d4285709e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, without a signed-in user.\",\"displayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"a0521574-fcd8-4742-b29c-f796df57ea70\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, without a signed-in user.\",\"displayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"id\":\"f5fa52a5-b9ab-4dc3-885e-9e5b4a67068e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read the tenant-level settings of SharePoint and OneDrive, without a signed-in user.\",\"displayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"83d4163d-a2d8-4d3b-9695-4ae3ca98f888\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SharePointTenantSettings.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -28129,10 +26637,18 @@ interactions: all users' short notes\",\"id\":\"0c7d31ec-31ca-4f58-b6ec-9950b6b0de69\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read, create, edit, and delete all the short notes without a signed-in user.\",\"displayName\":\"Read, create, edit, and delete all users' short - notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + notes\",\"id\":\"842c284c-763d-4a97-838d-79787d129bab\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ShortNotes.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read your organization's sign-in identifiers, without a signed-in + user.\",\"displayName\":\"Read all sign-in identifiers\",\"id\":\"28e1fe78-598f-4df4-b55e-18bf34218925\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write your organization's sign-in identifiers, without + a signed-in user.\",\"displayName\":\"Read and write all sign-in identifiers\",\"id\":\"7fc588a2-ea2d-4d1f-bcf7-33c324b149b8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to archive/reactivate site collections without a signed in user.\",\"displayName\":\"Archive/reactivate Site Collections without a signed - in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + in user.\",\"id\":\"e3530185-4080-478c-a4ab-39322704df58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Archive.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow + the application to create site collections without a signed in user. Upon + creation the application will be granted Sites.Selected(application) + FullControl + to the newly created site.\",\"displayName\":\"Create Site Collections without + a signed in user.\",\"id\":\"80819dd8-2b3b-4551-a1ad-2700fc44f533\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Create.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to have full control of all site collections without a signed in user.\",\"displayName\":\"Have full control of all site collections\",\"id\":\"a82116e5-55eb-4c41-a434-62fe8a61c773\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.FullControl.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create or delete document libraries and lists in all site collections @@ -28144,19 +26660,21 @@ interactions: site collections without a signed in user.\",\"displayName\":\"Read and write items in all site collections\",\"id\":\"9492366f-7969-46a4-8d15-ed1a20078fff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the application to access a subset of site collections without a signed in - user.\\u00A0\\u00A0The specific site collections and the permissions granted - will be configured in SharePoint Online.\",\"displayName\":\"Access selected - site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + user. The specific site collections and the permissions granted will be configured + in SharePoint Online.\",\"displayName\":\"Access selected site collections\",\"id\":\"883ea226-0bf2-4a8f-9f9d-92c9162a727d\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Sites.Selected\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read SPIFFE trust domains and child resources\",\"id\":\"dcdfc277-41fd-4d68-ad0c-c3057235bd8e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write your organization's SPIFFE trust domains and child resources without a signed in user.\",\"displayName\":\"Read and write SPIFFE - trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0subject\\u00A0rights - requests\\u00A0without a\\u00A0signed-in\\u00A0user.\",\"displayName\":\"Read\\u00A0all - subject\\u00A0rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0and\\u00A0write - subject\\u00A0rights requests\\u00A0without a signed in user.\",\"displayName\":\"Read\\u00A0and\\u00A0write\\u00A0all - subject\\u00A0rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + trust domains and child resources\",\"id\":\"17b78cfd-eeff-447d-8bab-2795af00055a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to modify Viva Engage storylines, read all storylines properties, + update storyline properties, and delete storyline properties without a signed-in + user.\",\"displayName\":\"Read and write all Viva Engage storylines\",\"id\":\"6eff534b-699e-44d9-af61-a4182f0ec37e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Storyline.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read subject rights requests without a signed-in user.\",\"displayName\":\"Read + all subject rights requests\",\"id\":\"ee1460f0-368b-4153-870a-4e1ca7e72c42\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read and write subject rights requests without a signed in user.\",\"displayName\":\"Read + and write all subject rights requests\",\"id\":\"8387eaa4-1a3c-41f5-b261-f888138e6041\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"SubjectRightsRequest.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read Azure AD synchronization information, without a signed-in user.\",\"displayName\":\"Read all Azure AD synchronization data.\",\"id\":\"5ba43d2f-fa88-4db2-bd1c-a67c5f0fb1ce\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Synchronization.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to configure the Azure AD synchronization service, without @@ -28175,7 +26693,7 @@ interactions: the app to create, read, update and delete all users\u2019 tasks and task lists in your organization, without a signed-in user\",\"displayName\":\"Read and write all users\u2019 tasks and tasklists\",\"id\":\"44e666d1-d276-445b-a5fc-8815eeb81d55\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Tasks.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to create teams without a signed-in user.\\u00A0\",\"displayName\":\"Create + the app to create teams without a signed-in user. \",\"displayName\":\"Create teams\",\"id\":\"23fc2474-f741-46ce-8465-674744c5c361\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.Create\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Get a list of all teams, without a signed-in user.\",\"displayName\":\"Get a list of all teams\",\"id\":\"2280dda6-0bfd-44ee-a2f4-cb867cfc4c1e\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"Team.ReadBasic.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Read @@ -28346,7 +26864,7 @@ interactions: user.\",\"displayName\":\"Read Teams devices\",\"id\":\"0591bafd-7c1c-4c30-a2a5-2b9aacb1dfe8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allow the app to read and write the management data for Teams devices, without a signed-in user.\",\"displayName\":\"Read and write Teams devices\",\"id\":\"79c02f5b-bd4f-4713-bc2c-a8a4a66e127b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkDevice.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows - the app to read\\u00A0tags in Teams\\u00A0without a signed-in user.\",\"displayName\":\"Read + the app to read tags in Teams without a signed-in user.\",\"displayName\":\"Read tags in Teams\",\"id\":\"b74fd6c4-4bde-488e-9695-eeb100e4907f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write tags in Teams without a signed-in user.\",\"displayName\":\"Read and write tags in Teams\",\"id\":\"a3371ca5-911d-46d6-901c-42c8c7a937d8\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"TeamworkTag.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -28363,8 +26881,8 @@ interactions: the app to read all the indicators for your organization, without a signed-in user.\",\"displayName\":\"Read all threat indicators\",\"id\":\"197ee4e9-b993-4066-898f-d6aecc55125b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), without a signed-in user. \\u00A0It cannot update - any threat indicators it does not own.\",\"displayName\":\"Manage threat indicators + (read, update and delete), without a signed-in user. It cannot update any + threat indicators it does not own.\",\"displayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"21792b6c-c986-4ffc-85de-df9da54b52fa\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read threat intelligence information, such as indicators, observations, and and articles, without a signed in user.\",\"displayName\":\"Read all Threat @@ -28396,6 +26914,9 @@ interactions: the app to read and write secondary mail addresses for all users, without a signed-in user.\",\"displayName\":\"Read and write all secondary mail addresses for users\",\"id\":\"280d0935-0796-47d1-8d26-273470a3f17a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-Mail.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to update the on-premises sync behavior of all users without a signed-in + user.\",\"displayName\":\"Read and update the on-premises sync behavior of + users\",\"id\":\"a94a502d-0281-4d15-8cd2-682ac9362c4c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read and write password profiles and reset passwords for all users, without a signed-in user.\",\"displayName\":\"Read and write all password profiles and reset user passwords\",\"id\":\"cc117bb9-00cf-4eb8-b580-ea2a878fe8f7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"User-PasswordProfile.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows @@ -28440,6 +26961,41 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods\",\"displayName\":\"Read and write all users' authentication methods \",\"id\":\"50483e42-d915-4231-9639-7fdb7fd190e5\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read email methods of all users in your organization, without a + signed-in user. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' email methods\",\"id\":\"a1e58be0-1095-422b-b067-73434bd7d40f\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write email methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' email methods\",\"id\":\"e8ecb853-1435-4a49-95ba-ec5b31b11672\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read external authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' external authentication methods\",\"id\":\"d2c4289f-9f95-40da-ad43-eeb1506f0db7\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write external authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' external + authentication methods\",\"id\":\"c7a22c2e-5b01-4129-8159-6c8be2c78f16\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' HardwareOATH authentication methods\",\"id\":\"7b544555-7811-49ff-8223-a56be870e33a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write HardwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + HardwareOATH authentication methods\",\"id\":\"7e9ebcc1-90aa-4471-8051-e68d6b4e9c89\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Microsoft authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' Microsoft authentication methods\",\"id\":\"a9c5f16e-e5ca-4e33-89ad-903fcfc01c23\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Microsoft Authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Microsoft Authentication methods\",\"id\":\"c833c349-a1ab-4b6d-94a2-fa9a8674420c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read passkey authentication methods of all users in your organization, without a signed-in user. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read @@ -28449,6 +27005,68 @@ interactions: to see secret information like passwords, or to sign-in or otherwise use the authentication methods\",\"displayName\":\"Read and write all users' passkey authentication methods\",\"id\":\"0400e371-7db1-4338-a269-96069eb65227\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read password authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' password authentication methods\",\"id\":\"8d2c17ff-b93d-40d5-9def-d843680509cb\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write password authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' password + authentication methods\",\"id\":\"f6d38dfd-ec08-4995-8f07-23e929df0936\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read phone authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' phone authentication methods\",\"id\":\"f529a223-ea70-43ec-b268-5012de2fbaa2\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write phone methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + and write all users' phone methods\",\"id\":\"6e85d483-7092-4375-babe-0a94a8213a58\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read platform credentials methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' platform credentials methods\",\"id\":\"07c0b1e4-15bd-442f-834b-30f8291388d1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write platform credentials methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' platform + credentials methods\",\"id\":\"1a87acf4-a9ca-4576-a974-452ea265d5f6\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read QR authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' QR methods\",\"id\":\"9a45bc50-cddd-4ebe-bd9c-4f2eacf646ae\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write QR authentication methods of all users in + your organization, without a signed-in user. This does not allow the app to + see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read and write all users' QR methods\",\"id\":\"4869299f-18c3-40c8-98f2-222657e67db1\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization, + without a signed-in user. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"displayName\":\"Read + all users' SoftwareOATH methods\",\"id\":\"a6b423df-a0c8-411d-a809-a4a5985d2939\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write SoftwareOATH authentication methods of all + users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + SoftwareOATH methods\",\"id\":\"787442d4-3c6e-4e99-aa95-8ccca20a48ff\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization, without a signed-in user. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"displayName\":\"Read all users' Temporary Access + Pass methods\",\"id\":\"bf82209c-b22b-4747-ac88-a68be99032cf\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Temporary Access Pass authentication methods + of all users in your organization, without a signed-in user. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Temporary Access Pass methods\",\"id\":\"627169a8-8c15-451c-861a-5b80e383de5c\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization, without a signed-in user. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"displayName\":\"Read all users' Windows Hello methods\",\"id\":\"9b8dd4c7-8cca-4ef5-a34a-9c2c75fcc934\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the application to read and write Windows Hello authentication methods of + all users in your organization, without a signed-in user. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"displayName\":\"Read and write all users' + Windows Hello authentication methods\",\"id\":\"f14eee8a-713e-45aa-8223-2ab74632db1a\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to send, read, update and delete user\u2019s notifications, without a signed-in user.\",\"displayName\":\"Deliver and manage all user's notifications\",\"id\":\"4e774092-a092-48d1-90bd-baad67c7eb47\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserNotification.ReadWrite.CreatedByApp\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all users' shift schedule preferences without a signed-in @@ -28456,7 +27074,9 @@ interactions: the app to manage all users' shift schedule preferences without a signed-in user.\",\"displayName\":\"Read and write all user shift preferences\",\"id\":\"d1eec298-80f3-49b0-9efb-d90e224798ac\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserShiftPreferences.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to read all user teamwork settings without a signed-in user.\",\"displayName\":\"Read - all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + all user teamwork settings\",\"id\":\"fbcd7ef1-df0d-4e05-bb28-93424a89c6df\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"UserTeamwork.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"This + role can read Verified Id profiles in a tenant.\",\"displayName\":\"Read Verified + Id profiles\",\"id\":\"e227c591-dd64-4a8a-a033-816167f7c938\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the application to read virtual appointments for all users, without a signed-in user. The app must also be authorized to access an individual user\u2019s data by the online meetings application access policy.\",\"displayName\":\"Read @@ -28479,6 +27099,8 @@ interactions: the app to read and write all Windows update deployment settings for the organization without a signed-in user.\",\"displayName\":\"Read and write all Windows update deployment settings\",\"id\":\"7dd1be58-6e76-4401-bf8d-31d1e8180d5b\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WindowsUpdates.ReadWrite.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows + the app to read workforce integrations without a signed-in user.\",\"displayName\":\"Read + workforce integrations\",\"id\":\"f10b94b9-37d1-4c88-8b7e-bf75a1152d39\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.Read.All\"},{\"allowedMemberTypes\":[\"Application\"],\"description\":\"Allows the app to manage workforce integrations to synchronize data from Microsoft Teams Shifts, without a signed-in user.\",\"displayName\":\"Read and write workforce integrations\",\"id\":\"202bf709-e8e6-478e-bcfd-5d63c50b68e3\",\"isEnabled\":true,\"origin\":\"Application\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"info\":{\"logoUrl\":null,\"marketingUrl\":null,\"privacyStatementUrl\":null,\"supportUrl\":null,\"termsOfServiceUrl\":null},\"keyCredentials\":[],\"oauth2PermissionScopes\":[{\"adminConsentDescription\":\"Allows @@ -28516,6 +27138,158 @@ interactions: the app to create, read, update, and delete administrative units and manage administrative unit membership on your behalf.\",\"userConsentDisplayName\":\"Read and write administrative units\",\"value\":\"AdministrativeUnit.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent cards and their skills in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"id\":\"73ea6732-992c-4292-98f7-9feff18d3ade\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent cards and their skills on your behalf.\",\"userConsentDisplayName\":\"Read + agent cards in Agent Registry\",\"value\":\"AgentCard.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent cards in Agent Registry\",\"id\":\"b0f726a8-0fa2-4ce2-937b-fd17a446261f\",\"isEnabled\":false,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent cards and manage their skills + on your behalf.\",\"userConsentDisplayName\":\"Read and write agent cards + in Agent Registry\",\"value\":\"AgentCard.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read agent card manifests in your organization's Agent Registry + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read agent + card manifests in Agent Registry\",\"id\":\"ada96a26-9579-4c29-a578-c3482a765716\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write agent card manifests in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"id\":\"80151b1a-1c31-4846-ae0d-c79939ee13d1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write agent card manifests on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent card manifests in Agent Registry\",\"value\":\"AgentCardManifest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read collections and their membership in your organization's Agent + Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + collections in Agent Registry\",\"id\":\"fa50be38-fdff-469c-96dc-ef5fce3c64bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read collections and their membership on your behalf.\",\"userConsentDisplayName\":\"Read + collections in Agent Registry\",\"value\":\"AgentCollection.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read global collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + global collection in Agent Registry\",\"id\":\"b14924c8-87f1-438a-81f2-dc370ba2f45d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read global collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + global collection in Agent Registry\",\"value\":\"AgentCollection.Read.Global\"},{\"adminConsentDescription\":\"Allows + the app to read quarantined collection and its membership in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"id\":\"43acfda3-daf3-4aa4-955d-b051d0024e82\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read quarantined collection and its membership on your behalf.\",\"userConsentDisplayName\":\"Read + quarantined collection in Agent Registry\",\"value\":\"AgentCollection.Read.Quarantined\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write collections in Agent Registry\",\"id\":\"6d8a7002-a05e-4b95-a768-0e6f0badc6c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete collections and manage their membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write collections + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update global collection and manage its membership in + your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write global collection in Agent Registry\",\"id\":\"c001dd65-8a6b-4349-ab0c-4e8a410d28d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update global collection and manage its membership on + your behalf.\",\"userConsentDisplayName\":\"Read and write global collection + in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Global\"},{\"adminConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + in your organization's Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write quarantined collection in Agent Registry\",\"id\":\"ae331cc9-9f51-484b-a90b-124f2e4a6398\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update quarantined collection and manage its membership + on your behalf.\",\"userConsentDisplayName\":\"Read and write quarantined + collection in Agent Registry\",\"value\":\"AgentCollection.ReadWrite.Quarantined\"},{\"adminConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"adminConsentDisplayName\":\"Delete + and restore agent identities\",\"id\":\"c8ee41e5-35e7-4fe9-8ecb-93493adcac5b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to delete and restore agent identities.\",\"userConsentDisplayName\":\"Delete + and restore agent identities\",\"value\":\"AgentIdentity.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"adminConsentDisplayName\":\"Enable + or disable agent identities\",\"id\":\"a501206a-e364-4a3f-be6e-765806d0e323\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to enable or disable agent identities.\",\"userConsentDisplayName\":\"Enable + or disable agent identities\",\"value\":\"AgentIdentity.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identities.\",\"adminConsentDisplayName\":\"Read + all agent identities\",\"id\":\"5e850691-d86a-4b24-bfa6-8a52fb37a0c1\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identities.\",\"userConsentDisplayName\":\"Read + all agent identities\",\"value\":\"AgentIdentity.Read.All\"},{\"adminConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Read and write all agent identities\",\"id\":\"4a4facd5-0ee1-49b7-a5b2-fdcc2491685e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read, update, and delete agent identities on behalf of the signed-in + user.\",\"userConsentDisplayName\":\"Read and write all agent identities\",\"value\":\"AgentIdentity.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"id\":\"75b5feb2-bfe7-423f-907d-cc505186f246\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint credentials on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint credentials\",\"value\":\"AgentIdentityBlueprint.AddRemoveCreds.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprints.\",\"id\":\"8fc15edd-ba24-494e-9bf6-d38e1b7ba8fd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"f12ba1f6-afb7-4685-9a30-21e8c3f551d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprint.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"adminConsentDisplayName\":\"Read + all agent identity blueprints\",\"id\":\"26512dc8-1364-4e9f-867c-6d8b22a9e162\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the client to read all agent identity blueprints.\",\"userConsentDisplayName\":\"Read + all agent identity blueprints\",\"value\":\"AgentIdentityBlueprint.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"id\":\"4fd490fc-1467-48eb-8a4c-421597ab0402\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprints on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read and write all agent + identity blueprints.\",\"value\":\"AgentIdentityBlueprint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"id\":\"6f677aa9-25af-49a5-8a1d-628dc7f0d009\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint authorization and authentication properties + on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update agent + identity blueprint authorization and authentication properties\",\"value\":\"AgentIdentityBlueprint.UpdateAuthProperties.All\"},{\"adminConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Update + agent identity blueprint branding\",\"id\":\"60960e31-67cb-4d25-9d36-4922109923a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + updating agent identity blueprint branding on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Update + agent identity blueprint branding\",\"value\":\"AgentIdentityBlueprint.UpdateBranding.All\"},{\"adminConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"id\":\"00dcd896-6b23-42ce-b5de-c58493c05e22\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + creating new agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Create + agent identity blueprint service principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Create\"},{\"adminConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"adminConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"id\":\"2c70023e-a482-4af2-9ff1-51ded53e6bad\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + deleting or restoring agent identity blueprints with a signed-in user.\",\"userConsentDisplayName\":\"Delete + and restore agent identity blueprints.\",\"value\":\"AgentIdentityBlueprintPrincipal.DeleteRestore.All\"},{\"adminConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"adminConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"id\":\"e7475e0a-9f02-43e2-a250-5c2ea74ccd0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + enabling or disabling agent identity blueprint principals with a signed-in + user.\",\"userConsentDisplayName\":\"Enable or disable agent identity blueprint + principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.EnableDisable.All\"},{\"adminConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"adminConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"id\":\"88c856a2-de61-4632-b2d4-ac503cbc8dd2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + reading agent identity blueprint principals with a signed-in user.\",\"userConsentDisplayName\":\"Read + agent identity blueprints principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"id\":\"bf2cad6a-9082-438a-9a63-95fa2687af65\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, update, and delete agent identity blueprint principals on + behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read and write + all agent identity blueprint principals.\",\"value\":\"AgentIdentityBlueprintPrincipal.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"ad57fb88-4658-4fd6-ab7d-e43184b08e4e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all agent ID users' full profiles\",\"id\":\"52a417d9-0b3c-4466-9a3b-66960de73d74\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the full set of profile properties, reports, and + managers of agent ID users in your organization, and read basic company properties, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all agent ID + users' full profiles\",\"value\":\"AgentIdUser.ReadWrite.IdentityParentedBy\"},{\"adminConsentDescription\":\"Allows + the app to read agent instances and their related collections in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"id\":\"4c3c738a-2df0-4877-bf4a-f796950ff34c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read agent instances and their related collections on your behalf.\",\"userConsentDisplayName\":\"Read + agent instances in Agent Registry\",\"value\":\"AgentInstance.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances in your organization's + Agent Registry on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"id\":\"fc79e324-da24-497a-b5ec-e7de08320375\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete agent instances on your behalf.\",\"userConsentDisplayName\":\"Read + and write agent instances in Agent Registry\",\"value\":\"AgentInstance.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read terms of use agreements on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all terms of use agreements\",\"id\":\"af2819c9-df71-4dd3-ade7-4d7c9dc653b7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read terms of use agreements on your behalf.\",\"userConsentDisplayName\":\"Read @@ -28595,6 +27369,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read applications\",\"id\":\"c79f8feb-a9db-4090-85f9-90d820caa0eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read applications and service principals on your behalf.\",\"userConsentDisplayName\":\"Read applications\",\"value\":\"Application.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update all apps in your organization, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read and update all apps\",\"id\":\"0586a906-4d89-4de8-b3c8-1aacdcc0c679\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update all apps in your organization, on your behalf.\",\"userConsentDisplayName\":\"Read + and update all apps\",\"value\":\"Application.ReadUpdate.All\"},{\"adminConsentDescription\":\"Allows the app to create, read, update and delete applications and service principals on behalf of the signed-in user. Does not allow management of consent grants.\",\"adminConsentDisplayName\":\"Read and write all applications\",\"id\":\"bdfbf15f-ee85-4955-8675-146e8e5296b5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -28633,7 +27411,15 @@ interactions: create, and update attack simulation data of an organization\",\"id\":\"27608d7c-2c66-4cad-a657-951d575f5a60\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, and update attack simulation and training data for an organization on your behalf.\",\"userConsentDisplayName\":\"Read, create, - and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and update attack simulation data of an organization\",\"value\":\"AttackSimulation.ReadWrite.All\"},{\"adminConsentDescription\":\"Read + activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"id\":\"16786f81-40d2-4116-bb26-d1a753bf0b20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + activity audit log from the audit store.\",\"value\":\"AuditActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"id\":\"a78fd341-0672-4792-a8ae-a5925b2546eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + activity audit logs to the audit store.\",\"value\":\"AuditActivity.Write\"},{\"adminConsentDescription\":\"Allows the app to read and query your audit log activities, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read audit log data\",\"id\":\"e4c9e354-4dc5-45b8-9e7c-e1393b0b1a20\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and query your audit log activities, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -28832,8 +27618,8 @@ interactions: delegate and shared calendars.\",\"adminConsentDisplayName\":\"Read user and shared calendars\",\"id\":\"2b9c4092-424d-4249-948d-b43879977640\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read events in all calendars that you can access, including delegate - and shared calendars.\\u00A0\",\"userConsentDisplayName\":\"Read calendars\\u00A0you - can access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows + and shared calendars. \",\"userConsentDisplayName\":\"Read calendars you can + access\",\"value\":\"Calendars.Read.Shared\"},{\"adminConsentDescription\":\"Allows the app to read events in user calendars, except for properties such as body, attachments, and extensions.\",\"adminConsentDisplayName\":\"Read basic details of user calendars\",\"id\":\"662d75ba-a364-42ad-adee-f5f880ea4878\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -28852,6 +27638,10 @@ interactions: organization you have permissions to access. This includes delegate and shared calendars.\",\"userConsentDisplayName\":\"Read and write to your and shared calendars\",\"value\":\"Calendars.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read all AI Insights for calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all AI Insights for calls. \",\"id\":\"e24bdaf9-83f8-468b-a144-c681ccb6caf4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read all AI Insights for calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all AI Insights for calls.\",\"value\":\"CallAiInsights.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read delegation settings of you\",\"adminConsentDisplayName\":\"Read delegation settings\",\"id\":\"305b375b-00fe-48bf-81bc-e8d78954c1b6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows you to read your delegation settings\",\"userConsentDisplayName\":\"Read your @@ -28864,6 +27654,14 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read call event data\",\"id\":\"43431c03-960e-400f-87c6-8f910321dca3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read call event information for an organization on your behalf.\",\"userConsentDisplayName\":\"Read call event data\",\"value\":\"CallEvents.Read\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all recordings of calls. \",\"id\":\"63d31bd6-bcf5-40ca-8283-ba4130a66405\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all recordings of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all recordings of calls.\",\"value\":\"CallRecordings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all transcripts of calls, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + all transcripts of calls. \",\"id\":\"fbace248-5d8e-441c-85ca-cc19221a69a2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all transcripts of calls, on your behalf.\",\"userConsentDisplayName\":\"Read + all transcripts of calls.\",\"value\":\"CallTranscripts.Read.All\"},{\"adminConsentDescription\":\"Allows to read all Change Management items.\",\"adminConsentDisplayName\":\"Read Change Management items\",\"id\":\"4628dff5-c33e-4fde-b17a-b64e7acb1bed\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows to read all Change Management items.\",\"userConsentDisplayName\":\"Read Change @@ -28920,7 +27718,7 @@ interactions: and write the names, descriptions, and settings of channels\",\"value\":\"ChannelSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to create chats on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create chats\",\"id\":\"38826093-1258-4dea-98f0-00003be2b8d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create chats on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create chats on your behalf. \",\"userConsentDisplayName\":\"Create chats\",\"value\":\"Chat.Create\"},{\"adminConsentDescription\":\"Allows the app to delete and recover deleted chats, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Delete and recover deleted chats\",\"id\":\"bb64e6fc-6b6d-4752-aea0-dd922dbba588\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -29018,6 +27816,12 @@ interactions: the app to read app consent requests for your approval, and deny or approve those request on your behalf.\",\"userConsentDisplayName\":\"Read and write consent requests\",\"value\":\"ConsentRequest.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of contacts a user + has permissions to, including their own and shared contacts.\",\"adminConsentDisplayName\":\"Read + and update the on-premises sync behavior of contacts\",\"id\":\"1e4c6c41-0803-4f52-85ef-0a5d63ad8670\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of contacts you have permissions + to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of your own and shared contacts\",\"value\":\"Contacts-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read user contacts. \",\"adminConsentDisplayName\":\"Read user contacts \",\"id\":\"ff74d97f-43af-4b68-9f2a-b77ee6968c5d\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read contacts in your contact folders.\",\"userConsentDisplayName\":\"Read @@ -29037,6 +27841,38 @@ interactions: the app to read, update, create, and delete contacts you have permissions to access, including your own and shared contacts.\",\"userConsentDisplayName\":\"Read and write to your and shared contacts\",\"value\":\"Contacts.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"adminConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"id\":\"7e2467d1-f874-46bb-828e-24cb06b29d3f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes at tenant scope.\",\"userConsentDisplayName\":\"Process + content for data security, governance and compliance\",\"value\":\"Content.Process.All\"},{\"adminConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"adminConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"id\":\"1d787a13-f750-4ad6-875a-fcbd2725596b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to process and evaluate content for data security, governance and + compliance outcomes for a user.\",\"userConsentDisplayName\":\"Process content + for data security, governance and compliance\",\"value\":\"Content.Process.User\"},{\"adminConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"adminConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"id\":\"62c55b2f-a2b1-4312-8385-be57afd901b4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Read + contents activity audit log from the audit store.\",\"userConsentDisplayName\":\"Read + contents activity audit log from the audit store.\",\"value\":\"ContentActivity.Read\"},{\"adminConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"adminConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"id\":\"948caae6-152a-48cd-a746-4844af30e8e9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to upload bulk contents activity audit logs to the audit store.\",\"userConsentDisplayName\":\"Upload + contents activity audit logs to the audit store.\",\"value\":\"ContentActivity.Write\"},{\"adminConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on behalf of the signed-in + user.\",\"adminConsentDisplayName\":\"Delete Microsoft 365 Copilot conversations\",\"id\":\"ed510a02-ac32-45f9-93e6-04864f7f7e47\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to delete Microsoft 365 Copilot conversations on your behalf.\",\"userConsentDisplayName\":\"Delete + Microsoft 365 Copilot conversations\",\"value\":\"CopilotConversation.Delete\"},{\"adminConsentDescription\":\"Allows + the user to read the packages information\",\"adminConsentDisplayName\":\"Read + all packages information\",\"id\":\"a2dcfcb9-cbe8-4d42-812d-952e55cf7f3f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read packages information.\",\"userConsentDisplayName\":\"Read + all packages information\",\"value\":\"CopilotPackages.Read.All\"},{\"adminConsentDescription\":\"Allows + the user to read and update the packages information\",\"adminConsentDisplayName\":\"Read + and update all packages information\",\"id\":\"e9c5fd18-ac15-43dd-9f5c-6f9611dd5604\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update packages information.\",\"userConsentDisplayName\":\"Read + and update all packages information\",\"value\":\"CopilotPackages.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide copilot limited mode setting on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organization-wide copilot limited mode setting\",\"id\":\"aeb2982d-632d-4155-b533-18756ab6fdd8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -29055,46 +27891,45 @@ interactions: within the Azure AD ecosystem on your behalf.\",\"userConsentDisplayName\":\"Read cross-tenant basic information\",\"value\":\"CrossTenantInformation.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export external user data (e.g. customer content or system-generated - logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + the current tenant on behalf of the signed-in user. It also permits the application + to export external user data (e.g. customer content or system-generated logs), + associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"id\":\"cb1ba48f-d22b-4325-a07f-74135a62ee41\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export data\",\"value\":\"CrossTenantUserProfileSharing.Read\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export their data\",\"id\":\"759dcd16-3c90-463c-937e-abf89f991c18\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export external user data (e.g. customer content or system-generated logs), + with the current tenant on your behalf. It also permits the application to + export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export data\",\"value\":\"CrossTenantUserProfileSharing.Read.All\"},{\"adminConsentDescription\":\"Allows the application to list and query user profile information associated with - the current tenant on behalf of the signed-in user.\\u00A0 It also permits - the application to export and remove external user data (e.g. customer content - or system-generated logs), associated with the current tenant on behalf of - the signed-in user.\",\"adminConsentDisplayName\":\"Read shared cross-tenant - user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the current tenant on behalf of the signed-in user. It also permits the application + to export and remove external user data (e.g. customer content or system-generated + logs), associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + shared cross-tenant user profile and export or delete data\",\"id\":\"eed0129d-dc60-4f30-8641-daf337a39ffd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove your external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read shared cross-tenant user profile and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on behalf of the signed-in user.\\u00A0 It also permits + with the current tenant on behalf of the signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all shared cross-tenant user profiles and export or delete their data\",\"id\":\"64dfa325-cbf8-48e3-938d-51224a0cac01\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to list and query any shared user profile information associated - with the current tenant on your behalf.\\u00A0 It also permits the application - to export and remove external user data (e.g. customer content or system-generated + with the current tenant on your behalf. It also permits the application to + export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.\",\"userConsentDisplayName\":\"Read any shared cross-tenant user profiles and export or delete data\",\"value\":\"CrossTenantUserProfileSharing.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's custom authentication extensions on behalf @@ -29351,6 +28186,16 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and update Azure AD recommendations\",\"id\":\"f37235e8-90a0-4189-93e2-e55b53867ccd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update Azure AD recommendations, on your behalf.\",\"userConsentDisplayName\":\"Read and update Azure AD recommendations\",\"value\":\"DirectoryRecommendations.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"adminConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"id\":\"33203a2a-a761-40f0-8a7c-a7e74a9f8ac6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read internal federation configuration for a domain.\",\"userConsentDisplayName\":\"Read + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"adminConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"id\":\"857bd3ea-490e-4284-88a7-a7de1893b6ee\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete internal federation configuration + for a domain.\",\"userConsentDisplayName\":\"Create, read, update and delete + internal federation configuration for a domain.\",\"value\":\"Domain-InternalFederation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all domain properties on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read domains.\",\"id\":\"2f9ee017-59c1-4f1d-9472-bd5529a7b311\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all domain properties on your behalf.\",\"userConsentDisplayName\":\"Read @@ -29396,7 +28241,7 @@ interactions: your assignments without grades\",\"value\":\"EduAssignments.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments and their grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments and their grades\",\"id\":\"2f233e90-164b-4501-8bce-31af2559a2d3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view and modify your assignments on your behalf including \\u00A0grades.\",\"userConsentDisplayName\":\"View + the app to view and modify your assignments on your behalf including grades.\",\"userConsentDisplayName\":\"View and modify your assignments and grades\",\"value\":\"EduAssignments.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write assignments without grades on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' class assignments without grades\",\"id\":\"2ef770a1-622a-47c4-93ee-28d6adbed3a0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -29420,13 +28265,13 @@ interactions: your school, class and user information\",\"value\":\"EduRoster.Read\"},{\"adminConsentDescription\":\"Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization's roster and a limited subset of properties - about users to be read on behalf of the user.\\u00A0Includes name, status, - education role, email address and photo.\",\"adminConsentDisplayName\":\"Read - a limited subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to view minimal \\u00A0information about both schools and classes - in your organization and education-related information about you and other - users on your behalf.\",\"userConsentDisplayName\":\"View a limited subset - of your school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows + about users to be read on behalf of the user. Includes name, status, education + role, email address and photo.\",\"adminConsentDisplayName\":\"Read a limited + subset of users' view of the roster\",\"id\":\"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to view minimal information about both schools and classes in your + organization and education-related information about you and other users on + your behalf.\",\"userConsentDisplayName\":\"View a limited subset of your + school, class and user information\",\"value\":\"EduRoster.ReadBasic\"},{\"adminConsentDescription\":\"Allows the app to read and write the structure of schools and classes in an organization's roster and education-specific information about users to be read and written on behalf of the user.\",\"adminConsentDisplayName\":\"Read and write users' @@ -29438,6 +28283,23 @@ interactions: users' email address\",\"id\":\"64a6cdd6-aab1-4aaf-94b8-3cc8405e90d0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your primary email address\",\"userConsentDisplayName\":\"View your email address\",\"value\":\"email\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage conversations, and to read their properties on + behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Viva + Engage conversations\",\"id\":\"c55541d9-2cdd-4fad-8ead-0c08fae5b0c8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage conversations\",\"value\":\"EngagementConversation.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage conversations\",\"id\":\"ebbfd079-1634-4640-8618-68b19ebbed1d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage conversations and read all conversation properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + communities\",\"value\":\"EngagementConversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read Viva Engage Teams QA conversations, and to read their properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + Viva Engage Teams QA conversations\",\"id\":\"58c5819e-29bd-4400-ad52-82cd82a63fbd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to list Viva Engage conversations, and to read their properties on + your behalf.\",\"userConsentDisplayName\":\"Read all Viva Engage Teams QA + conversations\",\"value\":\"EngagementMeetingConversation.Read.All\"},{\"adminConsentDescription\":\"Allows the app to list a user's Viva Engage roles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's Viva Engage roles \",\"id\":\"9f1da0fc-345c-4dfb-bab5-5215a073a417\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to list your Viva Engage roles, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -29490,6 +28352,10 @@ interactions: user via Exchange Web Services\",\"id\":\"9769c687-087d-48ac-9cb3-c37dde652038\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app full access to your mailboxes on your behalf.\",\"userConsentDisplayName\":\"Access your mailboxes\",\"value\":\"EWS.AccessAsUser.All\"},{\"adminConsentDescription\":\"Allows + the app to search the email message trace on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Search + the email message trace\",\"id\":\"b2e7d27e-14e7-41ad-bb15-a88ceb9c3e90\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to search the email message trace on your behalf.\",\"userConsentDisplayName\":\"Search + the email message trace\",\"value\":\"ExchangeMessageTrace.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all external connections on behalf of a signed-in user. The signed-in user must be an administrator.\",\"adminConsentDisplayName\":\"Read all external connections\",\"id\":\"a38267a5-26b6-4d76-9493-935b7599116b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -29600,6 +28466,26 @@ interactions: file storage containers and the permissions granted will be configured in Microsoft 365 by the developer of each container type.\",\"userConsentDisplayName\":\"Access selected file storage containers\",\"value\":\"FileStorageContainer.Selected\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container types on behalf of the signed + in user. The user must be a SharePoint Embedded Admin or Global Admin.\",\"adminConsentDisplayName\":\"Manage + file storage container types on behalf of the signed in user\",\"id\":\"8e6ec84c-5fcd-4cc7-ac8a-2296efc0ed9b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container types on your behalf. You + must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container types on your behalf\",\"value\":\"FileStorageContainerType.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage file storage container type registrations on behalf + of the signed in user. The user must be a SharePoint Embedded Admin or Global + Admin.\",\"adminConsentDisplayName\":\"Manage file storage container type + registrations on behalf of the signed in user\",\"id\":\"c319a7df-930e-44c0-a43b-7e5e9c7f4f24\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to access a subset of storage container type registrations on your + behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Manage + file storage container type registrations on your behalf\",\"value\":\"FileStorageContainerTypeReg.Manage.All\"},{\"adminConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on behalf of the signed in user. The user must be a SharePoint Embedded Admin + or Global Admin.\",\"adminConsentDisplayName\":\"Access selected file storage + container type registrations.\",\"id\":\"d1e4f63a-1569-475c-b9b2-bdc140405e38\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the application to manage selected file storage container type registrations + on your behalf. You must be a SharePoint Embedded Admin or Global Admin.\",\"userConsentDisplayName\":\"Access + selected file storage container type registrations.\",\"value\":\"FileStorageContainerTypeReg.Selected\"},{\"adminConsentDescription\":\"Allows the app to read and write financials data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write financials data\",\"id\":\"f534bf13-55d4-45a9-8f3c-c92fe64d6131\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write financials data on your behalf.\",\"userConsentDisplayName\":\"Read @@ -29621,6 +28507,11 @@ interactions: access to.\",\"adminConsentDisplayName\":\"Read and write group conversations\",\"id\":\"302bcbb5-855a-4e49-ae20-94a331b0281e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write group conversations that the signed-in user has access to.\",\"userConsentDisplayName\":\"Read and write group conversations\",\"value\":\"Group-Conversation.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of groups on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of groups\",\"id\":\"37e00479-5776-4659-aecf-4841ec5d590a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of groups on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of groups\",\"value\":\"Group-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access.\",\"adminConsentDisplayName\":\"Read @@ -29649,6 +28540,20 @@ interactions: the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.\",\"userConsentDisplayName\":\"Read and write group memberships\",\"value\":\"GroupMember.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all + group settings that user can access\",\"id\":\"2eb2bc92-94ef-4c6b-b4ab-2a09bc975e0e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read a list of tenant-level or group-specific group settings objects, + on your behalf.\",\"userConsentDisplayName\":\"Read all group settings that + user can access\",\"value\":\"GroupSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all group settings that user can access\",\"id\":\"c1691a6d-99e2-4cfa-b4b5-9e4d67dc0f36\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete on the list of tenant-level or + group-specific group settings objects that you have access to in the organization, + on your behalf.\",\"userConsentDisplayName\":\"Read and write all group settings + that user can access\",\"value\":\"GroupSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all scenario health monitoring alerts\",\"adminConsentDisplayName\":\"Read all scenario health monitoring alerts\",\"id\":\"74b4ff32-4917-4536-a66d-38a4861e6220\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all scenario health monitoring alerts, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -29686,13 +28591,24 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risk event information\",\"value\":\"IdentityRiskEvent.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include confirming risk event detections.\\u00A0\",\"adminConsentDisplayName\":\"Read - and write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + confirming risk event detections. \",\"adminConsentDisplayName\":\"Read and + write risk event information\",\"id\":\"9e4862a5-b68f-479e-848a-4e07e25c9916\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risk event information for all users in - your organization on your behalf.\\u00A0Update operations include confirming - risk event detections.\\u00A0\",\"userConsentDisplayName\":\"Read and write - risk event information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include confirming risk + event detections. \",\"userConsentDisplayName\":\"Read and write risk event + information\",\"value\":\"IdentityRiskEvent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"adminConsentDisplayName\":\"Read risky agents information\",\"id\":\"3215c57f-3faa-4295-95c2-6f14a5bc6124\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read risky agents information in your organization, on behalf of + the signed-in user.\",\"userConsentDisplayName\":\"Read risky agents information\",\"value\":\"IdentityRiskyAgent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on behalf of the signed-in user. Update operations include + dismissing risky agents.\",\"adminConsentDisplayName\":\"Read and write risky + agents information\",\"id\":\"d343bdeb-db6a-4e06-97da-9dafc2d61c60\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and update identity risky agents information for all agents + in your organization on your behalf. Update operations include dismissing + risky agents.\",\"userConsentDisplayName\":\"Read and write risky agents information\",\"value\":\"IdentityRiskyAgent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all identity risky service principal information for your organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity risky service principal information\",\"id\":\"ea5c4ab0-5a73-4f35-8272-5d5337884e5d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -29714,13 +28630,12 @@ interactions: on behalf of the signed-in user.\",\"userConsentDisplayName\":\"Read identity risky user information\",\"value\":\"IdentityRiskyUser.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on behalf of the signed-in user.\\u00A0Update operations - include dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write - risky user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + your organization on behalf of the signed-in user. Update operations include + dismissing risky users.\",\"adminConsentDisplayName\":\"Read and write risky + user information\",\"id\":\"e0a7cdbb-08b0-4697-8264-0069786e9674\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and update identity risky user information for all users in - your organization on your behalf.\\u00A0Update operations include dismissing - risky users.\",\"userConsentDisplayName\":\"Read and write identity risky - user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + your organization on your behalf. Update operations include dismissing risky + users.\",\"userConsentDisplayName\":\"Read and write identity risky user information\",\"value\":\"IdentityRiskyUser.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization's user flows, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all identity user flows\",\"id\":\"2903d63d-4611-4d43-99ce-a33f3f52e343\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's user flows, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -29827,20 +28742,21 @@ interactions: the app to read learning content in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning content\",\"id\":\"ea4c1fd9-6a9f-4432-8e5d-86e06cc0da77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read learning content in the organization's directory, on your - behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0manage - learning\\u00A0content\\u00A0in\\u00A0the\\u00A0organization's\\u00A0directory, - on your behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf.\",\"userConsentDisplayName\":\"Read learning content\",\"value\":\"LearningContent.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Manage learning content\",\"id\":\"53cec1c4-a65f-4981-9dc1-ad75dbf1c077\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to manage learning content in the organization's directory, on your + behalf.\",\"userConsentDisplayName\":\"Manage learning content\",\"value\":\"LearningContent.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read data for the learning provider in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read learning - provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0read\\u00A0data\\u00A0for\\u00A0the - learning\\u00A0provider\\u00A0in\\u00A0the organization's\\u00A0directory, + provider\",\"id\":\"dd8ce36f-9245-45ea-a99e-8ac398c22861\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read data for the learning provider in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Read learning provider\",\"value\":\"LearningProvider.Read\"},{\"adminConsentDescription\":\"Allows the app to create, update, read, and delete data for the learning provider - in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage\\u00A0learning\\u00A0provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows\\u00A0the\\u00A0app\\u00A0to\\u00A0create, - update, read, and delete\\u00A0data\\u00A0for\\u00A0the learning\\u00A0provider\\u00A0in\\u00A0the - organization's\\u00A0directory, on your behalf.\",\"userConsentDisplayName\":\"Manage + in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Manage + learning provider\",\"id\":\"40c2eb57-abaf-49f5-9331-e90fd01f7130\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, update, read, and delete data for the learning provider + in the organization's directory, on your behalf.\",\"userConsentDisplayName\":\"Manage learning provider\",\"value\":\"LearningProvider.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read data for the learner's self-initiated courses in the organization's directory, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -29917,6 +28833,24 @@ interactions: \ The specific lists and the permissions granted will be configured in SharePoint Online.\",\"userConsentDisplayName\":\"Access selected Lists, on behalf of the signed-in user\",\"value\":\"Lists.SelectedOperations.Selected\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in user mailboxes, on behalf of the signed-in user. Does not include + permission to send mail.\",\"adminConsentDisplayName\":\"Read and write the + user's mail, including modifying existing non-draft mails\",\"id\":\"f3af82f6-18e0-4a41-8dc8-a03c11854a8d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete email, including contents of non-draft + emails in your mailboxes, on your behalf. Does not include permission to send + mail.\",\"userConsentDisplayName\":\"Read and write your mail, including modifying + existing non-draft mails\",\"value\":\"Mail-Advanced.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails a user has permission to access, on behalf of the signed-in + user. This includes their own and shared mail. Does not include permission + to send mail.\",\"adminConsentDisplayName\":\"Read and write all mail the + user can access, including modifying existing non-draft mails\",\"id\":\"bebf0bb6-2ff3-4295-a17d-f3561da294fb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update, and delete mail including contents of non-draft + emails for all mails you have permission to access, on your behalf. This includes + your own mail and shared mail. Does not include permission to send mail.\",\"userConsentDisplayName\":\"Read + and write all mail you can access, including modifying existing non-draft + mails\",\"value\":\"Mail-Advanced.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to read the signed-in user's mailbox.\",\"adminConsentDisplayName\":\"Read user mail \",\"id\":\"570282fd-fa5c-430d-a7fd-fc8dc98a9dca\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read email in your mailbox.\",\"userConsentDisplayName\":\"Read @@ -29950,8 +28884,7 @@ interactions: mail\",\"id\":\"5df07973-7d5d-46ed-9847-1271055cbd51\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, update, create, and delete mail you have permission to access, including your own and shared mail. Does not allow the app to send mail on - your behalf.\",\"userConsentDisplayName\":\"Read and write mail\\u00A0you - can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows + your behalf.\",\"userConsentDisplayName\":\"Read and write mail you can access\",\"value\":\"Mail.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to send mail as users in the organization.\",\"adminConsentDisplayName\":\"Send mail as a user \",\"id\":\"e383f46e-2787-4529-855e-0e479a3ffac0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you.\",\"userConsentDisplayName\":\"Send mail as you @@ -29960,6 +28893,15 @@ interactions: mail on behalf of others\",\"id\":\"a367ab51-6b49-43bf-a716-a1fb06d2a174\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send mail as you or on-behalf of someone else.\",\"userConsentDisplayName\":\"Send mail on behalf of others or yourself\",\"value\":\"Mail.Send.Shared\"},{\"adminConsentDescription\":\"Allows + the app to read user's UserConfiguration objects, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Read user's UserConfiguration objects\",\"id\":\"dce2e6fc-0f4b-40da-94e2-14b4477f3d92\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + your UserConfiguration objects\",\"value\":\"MailboxConfigItem.Read\"},{\"adminConsentDescription\":\"Allows + the app to create, read, update and delete user's UserConfiguration objects, + on behalf of the the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write user's UserConfiguration objects\",\"id\":\"7d461784-7715-4b09-9f90-91a6d8722652\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create, read, update and delete your UserConfiguration objects.\",\"userConsentDisplayName\":\"Read + and write your UserConfiguration objects\",\"value\":\"MailboxConfigItem.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read the user's mailbox folders, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read a user's mailbox folders\",\"id\":\"52dc2051-4958-4636-8f2a-281d39c6981c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read @@ -29968,6 +28910,10 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write a user's mailbox folders\",\"id\":\"077fde41-7e0b-4c5b-bcd1-e9d743a30c80\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read and write your mailbox folders, on your behalf\",\"userConsentDisplayName\":\"Read and write your mailbox folders\",\"value\":\"MailboxFolder.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to export the user's mailbox items, on behalf of the the signed-in + user.\",\"adminConsentDisplayName\":\"Export a user's mailbox items\",\"id\":\"58d3e7fa-3ce9-4a0c-9baa-0971f64709d9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export your mailbox items, on your behalf\",\"userConsentDisplayName\":\"Export + your mailbox items\",\"value\":\"MailboxItem.Export\"},{\"adminConsentDescription\":\"Allows the app to backup, restore, and modify mailbox items on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Allows the app to perform backup and restore of mailbox items\",\"id\":\"df96e8a0-f4e1-4ecf-8d83-a429f822cbd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -30126,8 +29072,8 @@ interactions: user's online meeting artifacts\",\"value\":\"OnlineMeetingArtifact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read all recordings of online meetings, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all recordings of online meetings.\",\"id\":\"190c2bb6-1fdd-4fec-9aa2-7d571b5e1fe3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all recordings of online meetings, on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read - all recordings of online meetings.\\u00A0\",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read all recordings of online meetings, on your behalf. \",\"userConsentDisplayName\":\"Read + all recordings of online meetings. \",\"value\":\"OnlineMeetingRecording.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read online meeting details on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read user's online meetings\",\"id\":\"9be106e1-f4e3-4df5-bdff-e4bc531cbe43\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read online meeting details on your behalf.\",\"userConsentDisplayName\":\"Read @@ -30167,19 +29113,18 @@ interactions: app to read your basic profile information.\",\"userConsentDisplayName\":\"Sign in as you\",\"value\":\"openid\"},{\"adminConsentDescription\":\"Allows the app to read the organization and related resources, on behalf of the signed-in - user.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read the organization and related resources, on your behalf.\\u00A0Related + user. Related resources include things like subscribed skus and tenant branding + information.\",\"adminConsentDisplayName\":\"Read organization information\",\"id\":\"4908d5b9-3fb2-4b1e-9336-1888b7937185\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.\",\"userConsentDisplayName\":\"Read organization information\",\"value\":\"Organization.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read and write the organization and related resources, on behalf - of the signed-in user.\\u00A0Related resources include things like subscribed - skus and tenant branding information.\",\"adminConsentDisplayName\":\"Read - and write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + of the signed-in user. Related resources include things like subscribed skus + and tenant branding information.\",\"adminConsentDisplayName\":\"Read and + write organization information\",\"id\":\"46ca0847-7e6b-426e-9775-ea810a948356\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the organization and related resources, on your - behalf.\\u00A0Related resources include things like subscribed skus and tenant - branding information.\",\"userConsentDisplayName\":\"Read and write organization - information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + behalf. Related resources include things like subscribed skus and tenant branding + information.\",\"userConsentDisplayName\":\"Read and write organization information\",\"value\":\"Organization.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read the organizational branding information, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read organizational branding information\",\"id\":\"9082f138-6f02-4f3a-9f4d-5f3c2ce5c688\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -30192,10 +29137,10 @@ interactions: behalf.\",\"userConsentDisplayName\":\"Read and write organizational branding information\",\"value\":\"OrganizationalBranding.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all organizational contacts on behalf of the signed-in user. - \\u00A0These contacts are managed by the organization and are different from - a user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational + \ These contacts are managed by the organization and are different from a + user's personal contacts.\",\"adminConsentDisplayName\":\"Read organizational contacts\",\"id\":\"08432d1b-5911-483c-86df-7980af5cdee0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read all organizational contacts on your behalf.\\u00A0 These contacts + the app to read all organizational contacts on your behalf. These contacts are managed by the organization and are different from your personal contacts.\",\"userConsentDisplayName\":\"Read organizational contacts\",\"value\":\"OrgContact.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read organization-wide apps and services settings on behalf of @@ -30339,6 +29284,11 @@ interactions: your organization's policies\",\"id\":\"572fea84-0151-49b2-9301-11cb16974376\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read your organization's policies on your behalf.\",\"userConsentDisplayName\":\"Read your organization's policies\",\"value\":\"Policy.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read the authentication method policies, on behalf of the signed-in + user. \",\"adminConsentDisplayName\":\"Read authentication method policies\",\"id\":\"a6ff13ac-1851-4993-8ca9-a671d70de2d5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the authentication method policies for your tenant, on your + behalf.\",\"userConsentDisplayName\":\"Read your authentication method policies + \",\"value\":\"Policy.Read.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows the app to read your organization's conditional access policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization's conditional access policies\",\"id\":\"633e0fce-8c58-4cfb-9495-12bbd5a24f7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -30387,8 +29337,8 @@ interactions: on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication flow policies\",\"value\":\"Policy.ReadWrite.AuthenticationFlows\"},{\"adminConsentDescription\":\"Allows the app to read and write the authentication method policies, on behalf of - the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write - authentication method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the signed-in user. \",\"adminConsentDisplayName\":\"Read and write authentication + method policies\",\"id\":\"7e823077-d88e-468f-a337-e18f1f0e6c7c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write the authentication method policies for your tenant, on your behalf.\",\"userConsentDisplayName\":\"Read and write your authentication method policies \",\"value\":\"Policy.ReadWrite.AuthenticationMethod\"},{\"adminConsentDescription\":\"Allows @@ -30411,12 +29361,19 @@ interactions: request policy\",\"id\":\"4d135e65-66b8-41a8-9f8b-081452c91774\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's consent request policy on your behalf.\",\"userConsentDisplayName\":\"Read and write consent request policy\",\"value\":\"Policy.ReadWrite.ConsentRequest\"},{\"adminConsentDescription\":\"Allows - the app to read and write your organization's cross tenant access policies - on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and - write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's cross-tenant access policies + and configuration for automatic user consent settings to suppress consent + prompts for users of the other tenant on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write your organization's cross tenant access policies\",\"id\":\"014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write your organization's cross tenant access policies on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's cross tenant access policies\",\"value\":\"Policy.ReadWrite.CrossTenantAccess\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write your organization's M365 cross tenant access capabilities\",\"id\":\"9ef7463f-1d39-406f-89ea-3483a4645e1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's M365 cross tenant access capabilities + on your behalf.\",\"userConsentDisplayName\":\"Read and write your organization's + M365 cross tenant access capabilities\",\"value\":\"Policy.ReadWrite.CrossTenantCapability\"},{\"adminConsentDescription\":\"Allows the app to read and write your organization's device configuration policies on behalf of the signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional @@ -30520,29 +29477,29 @@ interactions: user.\",\"adminConsentDisplayName\":\"Read and write print connectors\",\"id\":\"79ef9967-7d59-4213-9c64-4b10687637d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and write print connectors on your behalf.\",\"userConsentDisplayName\":\"Read and write print connectors\",\"value\":\"PrintConnector.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to create (register) printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to create (register) printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Register - printers\\u202F\\u00A0\",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows + the application to create (register) printers on behalf of the signed-in user. + \",\"adminConsentDisplayName\":\"Register printers \",\"id\":\"90c30bed-6fd1-4279-bf39-714069619721\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to create (register) printers on your behalf. \",\"userConsentDisplayName\":\"Register + printers \",\"value\":\"Printer.Create\"},{\"adminConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Register, + printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Register, read, update, and unregister printers\",\"id\":\"93dae4bd-43a1-4a23-9a1a-92957e1d9121\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to create (register), read, update, and delete (unregister) - printers on your behalf.\\u00A0\\u00A0\",\"userConsentDisplayName\":\"Register, - read, update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows - the application to read printers on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + printers on your behalf. \",\"userConsentDisplayName\":\"Register, read, + update, and unregister printers\",\"value\":\"Printer.FullControl.All\"},{\"adminConsentDescription\":\"Allows + the application to read printers on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printers\",\"id\":\"3a736c8a-018e-460a-b60c-863b2683e8bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read printers on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printers on your behalf. \",\"userConsentDisplayName\":\"Read printers\",\"value\":\"Printer.Read.All\"},{\"adminConsentDescription\":\"Allows - the application to read and update printers on behalf of the signed-in user.\\u00A0Does - not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read + the application to read and update printers on behalf of the signed-in user. + Does not allow creating (registering) or deleting (unregistering) printers.\",\"adminConsentDisplayName\":\"Read and update printers\",\"id\":\"89f66824-725f-4b8f-928e-e1c5258dc565\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printers on your behalf.\\u00A0Does not - allow creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read + the application to read and update printers on your behalf. Does not allow + creating (registering) or deleting (unregistering) printers.\",\"userConsentDisplayName\":\"Read and update printers\",\"value\":\"Printer.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows - the application to read printer shares on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + the application to read printer shares on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read printer shares\",\"id\":\"ed11134d-2f3f-440d-a2e1-411efada2502\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the application to read printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + the application to read printer shares on your behalf. \",\"userConsentDisplayName\":\"Read printer shares\",\"value\":\"PrinterShare.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read basic information about printer shares on behalf of the signed-in user. Does not allow reading access control information.\",\"adminConsentDisplayName\":\"Read @@ -30550,8 +29507,8 @@ interactions: the application to read basic information about printer shares on your behalf.\",\"userConsentDisplayName\":\"Read basic information about printer shares\",\"value\":\"PrinterShare.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update printer shares on behalf of the signed-in - user.\\u00A0\",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update printer shares on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read + user. \",\"adminConsentDisplayName\":\"Read and write printer shares\",\"id\":\"06ceea37-85e2-40d7-bec3-91337a46038f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the application to read and update printer shares on your behalf. \",\"userConsentDisplayName\":\"Read and update printer shares\",\"value\":\"PrinterShare.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to create print jobs on behalf of the signed-in user and upload document content to print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Create @@ -30565,10 +29522,10 @@ interactions: the application to read the metadata and document content of print jobs that you created.\",\"userConsentDisplayName\":\"Read your print jobs\",\"value\":\"PrintJob.Read\"},{\"adminConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read - print jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read print + jobs\",\"id\":\"afdd6933-a0d8-40f7-bd1a-b5d778e8624b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read the metadata and document content of print jobs on - your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows + your behalf. \",\"userConsentDisplayName\":\"Read print jobs\",\"value\":\"PrintJob.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of user's print jobs\",\"id\":\"6a71a747-280f-4670-9ca0-a9cbf882b274\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -30576,10 +29533,10 @@ interactions: not allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of your print jobs\",\"value\":\"PrintJob.ReadBasic\"},{\"adminConsentDescription\":\"Allows the application to read the metadata of print jobs on behalf of the signed-in - user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read basic information of print jobs\",\"id\":\"04ce8d60-72ce-4867-85cf-6d82f36922f3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read the metadata of print jobs on your behalf. Does not + allow access to print job document content.\",\"userConsentDisplayName\":\"Read basic information of print jobs\",\"value\":\"PrintJob.ReadBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print jobs that the signed-in user created.\",\"adminConsentDisplayName\":\"Read @@ -30588,11 +29545,11 @@ interactions: jobs that you created.\",\"userConsentDisplayName\":\"Read and update your print jobs\",\"value\":\"PrintJob.ReadWrite\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on behalf of the signed-in user.\\u00A0\",\"adminConsentDisplayName\":\"Read + jobs on behalf of the signed-in user. \",\"adminConsentDisplayName\":\"Read and write print jobs\",\"id\":\"036b9544-e8c5-46ef-900a-0646cc42b271\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read and update the metadata and document content of print - jobs on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Read and update - print jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + jobs on your behalf. \",\"userConsentDisplayName\":\"Read and update print + jobs\",\"value\":\"PrintJob.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of user's print jobs\",\"id\":\"6f2d22f2-1cb6-412c-a17c-3336817eaa82\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows @@ -30600,10 +29557,10 @@ interactions: Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of your print jobs\",\"value\":\"PrintJob.ReadWriteBasic\"},{\"adminConsentDescription\":\"Allows the application to read and update the metadata of print jobs on behalf of - the signed-in user.\\u00A0Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read + the signed-in user. Does not allow access to print job document content.\",\"adminConsentDisplayName\":\"Read and write basic information of print jobs\",\"id\":\"3a0db2f6-0d2a-4c19-971b-49109b19ad3d\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the application to read and update the metadata of print jobs on your behalf.\\u00A0Does - not allow access to print job document content.\",\"userConsentDisplayName\":\"Read + the application to read and update the metadata of print jobs on your behalf. + Does not allow access to print job document content.\",\"userConsentDisplayName\":\"Read and write basic information of print jobs\",\"value\":\"PrintJob.ReadWriteBasic.All\"},{\"adminConsentDescription\":\"Allows the application to read tenant-wide print settings on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read tenant-wide print settings\",\"id\":\"490f32fd-d90f-4dd7-a601-ff6cdc1a3f6c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -30655,7 +29612,7 @@ interactions: groups, storage, compute) on behalf of the signed-in users.\",\"adminConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"id\":\"a84a9652-ffd3-496e-a991-22ba5529156a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to request and manage time-based assignment and just-in-time elevation - of user privileges to manage \\u00A0your Azure resources (like your subscriptions, + of user privileges to manage your Azure resources (like your subscriptions, resource groups, storage, compute) on your behalf.\",\"userConsentDisplayName\":\"Read and write privileged access to Azure resources\",\"value\":\"PrivilegedAccess.ReadWrite.AzureResources\"},{\"adminConsentDescription\":\"Allows the app to read time-based assignment schedules for access to Azure AD groups, @@ -30719,6 +29676,22 @@ interactions: the app to read, update and perform action on programs and program controls that you have access to.\",\"userConsentDisplayName\":\"Manage programs that you can access\",\"value\":\"ProgramControl.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"adminConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"id\":\"98f5a27a-539a-48bc-a597-f78e9e1e76bf\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for all users across tenant.\",\"userConsentDisplayName\":\"Compute + Purview policies at tenant scope\",\"value\":\"ProtectionScopes.Compute.All\"},{\"adminConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"adminConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"id\":\"4fc04d16-a9fc-4c5e-8da4-79b6c33638a4\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to identify Purview data protection, compliance and governance policy + scopes defined for an individual user.\",\"userConsentDisplayName\":\"Compute + Purview policies for an individual user\",\"value\":\"ProtectionScopes.Compute.User\"},{\"adminConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read provisioning log data\",\"id\":\"95aec97b-cf27-4a8d-a67d-42f60b5b38ef\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and query your provisioning log activities, on your behalf.\",\"userConsentDisplayName\":\"Read + provisioning log data\",\"value\":\"ProvisioningLog.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read certificate-based authentication configuration such as all public key infrastructures (PKI) and certificate authorities (CA) configured for the organization, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read @@ -30739,12 +29712,18 @@ interactions: all Questions and Answers that the user can access.\",\"id\":\"f73fa04f-b9a5-4df9-8843-993ce928925e\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read all question and answer sets that you can access.\",\"userConsentDisplayName\":\"Read all Questions and Answers that you can access.\",\"value\":\"QnA.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Access real-time enriched + data in a meeting\",\"id\":\"db5d5bae-0c9e-444e-9390-8a5fea98c253\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to get direct access to real-time enriched data in a meeting, on your + behalf.\",\"userConsentDisplayName\":\"Access real-time enriched data in a + meeting\",\"value\":\"RealTimeActivityFeed.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read - Records Management configuration,\\u00A0labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + Records Management configuration, labels, and policies\",\"id\":\"07f995eb-fc67-4522-ad66-2b8ca8ea3efd\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.\",\"userConsentDisplayName\":\"Read Records - Management configuration,\\u00A0labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow + Management configuration, labels, and policies\",\"value\":\"RecordsManagement.Read.All\"},{\"adminConsentDescription\":\"Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write Records Management configuration, labels, and policies\",\"id\":\"f2833d75-a4e6-40ab-86d4-6dfe73c97605\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -30855,11 +29834,11 @@ interactions: assignments.\",\"userConsentDisplayName\":\"Read role management data for all RBAC providers\",\"value\":\"RoleManagement.Read.All\"},{\"adminConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - behalf of the signed-in user.\\u00A0 This includes reading Cloud PC role definitions + behalf of the signed-in user. This includes reading Cloud PC role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"id\":\"9619b88a-8a25-48a7-9571-d23be0337a79\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read the Cloud PC role-based access control (RBAC) settings, on - your behalf.\\u00A0 This includes reading Cloud PC role definitions and role - assignments.\",\"userConsentDisplayName\":\"Read Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows + your behalf. This includes reading Cloud PC role definitions and role assignments.\",\"userConsentDisplayName\":\"Read + Cloud PC RBAC settings\",\"value\":\"RoleManagement.Read.CloudPC\"},{\"adminConsentDescription\":\"Allows the app to read the role-based access control (RBAC) settings for your company's directory, on behalf of the signed-in user. This includes reading M365 Defender role definitions and role assignments.\",\"adminConsentDisplayName\":\"Read @@ -31025,6 +30004,16 @@ interactions: like deleting an email, on your behalf.\",\"userConsentDisplayName\":\"Read metadata, detection details, and execute remediation actions on emails in your organization\",\"value\":\"SecurityAnalyzedMessage.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all Security Copilot signed-in user's resources on behalf + of the signed-in user\",\"adminConsentDisplayName\":\"Read all Security Copilot + resources for the signed-in user\",\"id\":\"84499c31-ac2e-44d3-a0cf-a6c386d4dfe8\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Read + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write Security Copilot resources owned by the signed-in + user on their behalf.\",\"adminConsentDisplayName\":\"Read and write individually + owned Security Copilot resources of the signed-in user\",\"id\":\"206291b0-2167-47a7-a640-6cdc1df710ba\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to write Security Copilot resources owned by user on user's behalf.\",\"userConsentDisplayName\":\"Write + user's Security Copilot resources\",\"value\":\"SecurityCopilotWorkspaces.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read your organization\u2019s security events on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read your organization\u2019s security events\",\"id\":\"64733abd-851e-478a-bffb-e47a14b18235\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -31037,6 +30026,25 @@ interactions: the app to read your organization\u2019s security events on your behalf. Also allows you to update editable properties in security events.\",\"userConsentDisplayName\":\"Read and update your organization\u2019s security events\",\"value\":\"SecurityEvents.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read all the identity security available identity accounts\",\"adminConsentDisplayName\":\"Read + identity security available identity accounts\",\"id\":\"3e9ed69a-a48e-473c-8b97-413016703a37\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read all the identity security available identity accounts on your + behalf.\",\"userConsentDisplayName\":\"Read identity security available identity + accounts\",\"value\":\"SecurityIdentitiesAccount.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write identity security available actions on behalf of + the signed-in identity.\",\"adminConsentDisplayName\":\"Read and perform identity + security available actions\",\"id\":\"818229ce-20e4-47bd-92f4-bc94dbb37a56\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write identity security available actions on your behalf.\",\"userConsentDisplayName\":\"Read + and perform identity security available actions\",\"value\":\"SecurityIdentitiesActions.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the sensors window auditing configuration of the signed in + user\",\"adminConsentDisplayName\":\"Read sensors window auditing configuration\",\"id\":\"8ff90903-1ecb-4f3a-b8b2-42120374ecd6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read the sensors window auditing configuration on your behalf\",\"userConsentDisplayName\":\"Read + sensors window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration of the + signed in user\",\"adminConsentDisplayName\":\"Read and write sensors window + auditing configuration\",\"id\":\"b810fdb4-8733-43bd-9b37-fddb7215c69f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write the sensors window auditing configuration on your + behalf\",\"userConsentDisplayName\":\"Read and write window auditing configuration\",\"value\":\"SecurityIdentitiesAutoConfig.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read all the identity security health issues of signed user\",\"adminConsentDisplayName\":\"Read identity security health issues\",\"id\":\"a0d0da43-a6df-4416-b63d-99c79991aae8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all the identity security health issues on your behalf.\",\"userConsentDisplayName\":\"Read @@ -31072,7 +30080,30 @@ interactions: the app to read and write security incidents, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write to incidents\",\"id\":\"128ca929-1a19-45e6-a3b8-435ec44a36ba\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read and write to all security incidents that you have access to.\",\"userConsentDisplayName\":\"Read - and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + and write to security incidents\",\"value\":\"SecurityIncident.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Evaluate sensitivity + labels\",\"id\":\"a4633e44-d355-4474-99df-8c2de6b0e39e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the app to determine if there is any sensitivity label to be applied automatically + to the content or recommended to the user for manual application, on your + behalf.\",\"userConsentDisplayName\":\"Evaluate sensitivity labels\",\"value\":\"SensitivityLabel.Evaluate\"},{\"adminConsentDescription\":\"Allows + the app to evaluate all sensitivity label.\",\"adminConsentDisplayName\":\"Evaluate + labels tenant scope.\",\"id\":\"a42e3c42-b31e-4919-b699-696dca5dc9e7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Evaluate + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Evaluate + labels tenant scope\",\"value\":\"SensitivityLabel.Evaluate.All\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + user scope.\",\"id\":\"1aeb73ce-68d7-49b7-913a-eedc80844551\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels tenant scope, on your behalf.\",\"userConsentDisplayName\":\"Get labels + user scope\",\"value\":\"SensitivityLabel.Read\"},{\"adminConsentDescription\":\"Allows + the app to get sensitivity labels.\",\"adminConsentDisplayName\":\"Get labels + app scope.\",\"id\":\"8b377c27-ea19-4863-a948-8a8588c8f2c3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Get + labels on behalf of user.\",\"userConsentDisplayName\":\"Get labels on behalf + of user\",\"value\":\"SensitivityLabels.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to export all Sentiment Survey, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Export + all Sentiment Survey\",\"id\":\"df9fd94d-51ff-443d-8f31-ae4dc1b5b8d8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to export all Sentiment Survey, on your behalf.\",\"userConsentDisplayName\":\"Export + all Sentiment Survey\",\"value\":\"SentimentSurvey.Export.All\"},{\"adminConsentDescription\":\"Allows the app to read all Exchange service activity, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all Exchange service activity\",\"id\":\"1fe7aa48-9373-4a47-8df3-168335e0f4c9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read all Exchange service activity, on your behalf.\",\"userConsentDisplayName\":\"Read @@ -31116,6 +30147,18 @@ interactions: and update service principal endpoints\",\"id\":\"7297d82c-9546-4aed-91df-3d4f0a9b3ff0\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to update service principal endpoints\",\"userConsentDisplayName\":\"Read and update service principal endpoints\",\"value\":\"ServicePrincipalEndpoint.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read, + write and manage SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"c608c170-08b5-466b-a8fe-0b4074b01613\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read, write and manage your tenant's SharePoint Cross-Tenant migration + settings and tasks, on your behalf.\",\"userConsentDisplayName\":\"Read, write + and manage SharePoint Cross-Tenant migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Manage.All\"},{\"adminConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + SharePoint Cross-Tenant migration settings and tasks\",\"id\":\"00dcb678-f9af-4e73-acb1-4f1657364629\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your tenant's SharePoint Cross-Tenant migration settings and + tasks, on your behalf.\",\"userConsentDisplayName\":\"Read SharePoint Cross-Tenant + migration settings and tasks\",\"value\":\"SharePointCrossTenantMigration.Read.All\"},{\"adminConsentDescription\":\"Allows the application to read the tenant-level settings in SharePoint and OneDrive on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read SharePoint and OneDrive tenant settings\",\"id\":\"2ef70e10-5bfd-4ede-a5f6-67720500b258\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -31136,6 +30179,23 @@ interactions: create, edit, and delete short notes of the signed-in user\",\"id\":\"328438b7-4c01-4c07-a840-e625a749bb89\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to read, create, edit, and delete your short notes.\",\"userConsentDisplayName\":\"Read, create, edit, and delete your short notes\",\"value\":\"ShortNotes.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on behalf of the + signed-in user.\",\"adminConsentDisplayName\":\"Read SignInIdentifiers\",\"id\":\"458e1edc-1e75-438c-8c7b-c32115c9d373\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your organization's sign-in identifiers, on your behalf.\",\"userConsentDisplayName\":\"Read + all sign-in identifiers\",\"value\":\"SignInIdentifier.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write all + sign-in identifiers\",\"id\":\"b4673c3c-7b5a-4012-9826-7c7e3c8db6af\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your organization's sign-in identifiers, on your + behalf.\",\"userConsentDisplayName\":\"Read and write all sign-in identifiers\",\"value\":\"SignInIdentifier.ReadWrite.All\"},{\"adminConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"adminConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"id\":\"0e2e68e1-3f32-4e10-9281-f749e097fcbe\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow + the application to create site collections on behalf of the signed in user. + Upon creation the application will be granted Sites.Selected(delegated) + + FullControl to the newly created site.\",\"userConsentDisplayName\":\"Create + Site Collections, on behalf of the signed-in user\",\"value\":\"Sites.Create.All\"},{\"adminConsentDescription\":\"Allows the application to have full control of all site collections on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Have full control of all site collections\",\"id\":\"5a54b8b3-347c-476d-8f8e-42d5c7424d29\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allow @@ -31183,6 +30243,12 @@ interactions: the app to read and write your organization's SPIFFE trust domains and child resources on your behalf.\",\"userConsentDisplayName\":\"Read and write SPIFFE trust domains and child resources\",\"value\":\"SpiffeTrustDomain.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to modify the Viva Engage storyline and read all storyline properties + on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and + write all Viva Engage storylines\",\"id\":\"fd1d61cb-4e4b-4d15-a6d2-161348681d84\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to create Viva Engage storyline items and read all storyline properties + on your behalf.\",\"userConsentDisplayName\":\"Read and write all Viva Engage + storylines\",\"value\":\"Storyline.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read subject rights requests on behalf of the signed-in user\",\"adminConsentDisplayName\":\"Read subject rights requests\",\"id\":\"9c3af74c-fd0f-4db4-b17a-71939e2a9d77\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read subject rights requests on your behalf.\",\"userConsentDisplayName\":\"Read @@ -31235,7 +30301,7 @@ interactions: and write to your and shared tasks\",\"value\":\"Tasks.ReadWrite.Shared\"},{\"adminConsentDescription\":\"Allows the app to create teams on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Create teams\",\"id\":\"7825d5d6-6049-4ce7-bdf6-3b8d53f4bcd0\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows - the app to create teams on your behalf.\\u00A0\",\"userConsentDisplayName\":\"Create + the app to create teams on your behalf. \",\"userConsentDisplayName\":\"Create teams\",\"value\":\"Team.Create\"},{\"adminConsentDescription\":\"Read the names and descriptions of teams, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read the names and descriptions of teams\",\"id\":\"485be79e-c497-4b35-9400-0e3fa7f2a5d4\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Read @@ -31580,7 +30646,7 @@ interactions: the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.\",\"userConsentDisplayName\":\"Read term store data\",\"value\":\"TermStore.Read.All\"},{\"adminConsentDescription\":\"Allows - the app to read or modify data that the signed-in user has access to.\\u00A0This + the app to read or modify data that the signed-in user has access to. This includes all sets, groups and terms in the term store.\",\"adminConsentDisplayName\":\"Read and write term store data\",\"id\":\"6c37c71d-f50f-4bff-8fd3-8a41da390140\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to read or modify data that you have access to. This includes all @@ -31603,13 +30669,13 @@ interactions: the app to read all the indicators for your organization, on your behalf.\",\"userConsentDisplayName\":\"Read all threat indicators\",\"value\":\"ThreatIndicators.Read.All\"},{\"adminConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on behalf of the signed-in user. \\u00A0It cannot - update any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage + (read, update and delete), on behalf of the signed-in user. It cannot update + any threat indicators it does not own.\",\"adminConsentDisplayName\":\"Manage threat indicators this app creates or owns\",\"id\":\"91e7d36d-022a-490f-a748-f8e011357b42\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows the app to create threat indicators, and fully manage those threat indicators - (read, update and delete), on your behalf. \\u00A0It cannot update any threat - indicators that it is not an owner of.\",\"userConsentDisplayName\":\"Manage - threat indicators this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows + (read, update and delete), on your behalf. It cannot update any threat indicators + that it is not an owner of.\",\"userConsentDisplayName\":\"Manage threat indicators + this app creates or owns\",\"value\":\"ThreatIndicators.ReadWrite.OwnedBy\"},{\"adminConsentDescription\":\"Allows the app to read threat intelligence information, such as indicators, observations, and articles, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read all threat intelligence information\",\"id\":\"f266d9c0-ccb9-4fb8-a228-01ac0d8d6627\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -31688,6 +30754,11 @@ interactions: the app to read and write secondary mail addresses for all users, on your behalf.\",\"userConsentDisplayName\":\"Read and write secondary mail addresses for users\",\"value\":\"User-Mail.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read and update the on-premises sync behavior of users on behalf + of the signed-in user.\",\"adminConsentDisplayName\":\"Read and update the + on-premises sync behavior of users\",\"id\":\"7ff9afdd-0cdb-439d-a61c-fea3e9339e89\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to update the on-premises sync behavior of users on your behalf.\",\"userConsentDisplayName\":\"Read + and update the on-premises sync behavior of users\",\"value\":\"User-OnPremisesSyncBehavior.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows the app to read and write password profiles and reset passwords for all users, on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read and write password profiles and reset user passwords\",\"id\":\"56760768-b641-451f-8906-e1b8ab31bca7\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows @@ -31807,6 +30878,152 @@ interactions: does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' authentication methods\",\"value\":\"UserAuthenticationMethod.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's email authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's email authentication methods\",\"id\":\"12b23cea-90c1-4873-9094-f45c5f290f86\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your email authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your email + authentication methods\",\"value\":\"UserAuthMethod-Email.Read\"},{\"adminConsentDescription\":\"Allows + the app to read email methods of all users in your organization that the signed-in + user has access to. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + all users' email methods\",\"id\":\"76caaf3a-ebdb-40a3-9299-4196e636f290\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read email methods of all users you have access to in your organization. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' email methods\",\"value\":\"UserAuthMethod-Email.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's email authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's email authentication methods\",\"id\":\"696aa421-62dc-4c99-be16-015b23444089\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your email authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your email authentication methods\",\"value\":\"UserAuthMethod-Email.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write email methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' email methods.\",\"id\":\"074f680f-c89e-45be-880e-5d0642860a1c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write email methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' email methods\",\"value\":\"UserAuthMethod-Email.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's external authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's external authentication methods\",\"id\":\"d1739827-146b-4f7f-b52c-1c509253aa57\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your external authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your external + authentication methods\",\"value\":\"UserAuthMethod-External.Read\"},{\"adminConsentDescription\":\"Allows + the app to read external authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' external authentication + methods\",\"id\":\"cbca9646-4c34-4cea-8e54-9a7088018820\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read external authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' external authentication methods\",\"value\":\"UserAuthMethod-External.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's external authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's external authentication methods\",\"id\":\"28c2e8f9-828a-4691-a090-f2f0b7fc07b3\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your external authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your external authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write external authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' external methods.\",\"id\":\"9d91805d-0f53-43e3-a0f3-303ad4f3056f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write external authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' external + authentication methods\",\"value\":\"UserAuthMethod-External.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's HardwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's HardwareOATH authentication methods\",\"id\":\"ccd2eb40-8874-44e6-8f96-335908b3cfdb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your HardwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"id\":\"acd68c26-c283-4bf4-8b5c-200fc179bdd5\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read HardwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' HardwareOATH authentication + methods\",\"value\":\"UserAuthMethod-HardwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's HardwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's HardwareOATH authentication methods\",\"id\":\"147ca97b-6686-4849-b37e-09d9b5ad45fc\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your HardwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your HardwareOATH authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' HardwareOATH methods.\",\"id\":\"480643f2-a162-43c5-a670-dc1494fc911b\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write HardwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' HardwareOATH + authentication methods\",\"value\":\"UserAuthMethod-HardwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"f14a567b-3280-4124-95a0-eca86006967e\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Microsoft Authenticator authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' Microsoft authentication + methods\",\"id\":\"7b627679-e2fd-4bfd-990e-989e2914d4e6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Microsoft authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' Microsoft authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Microsoft Authenticator authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Microsoft Authenticator authentication methods\",\"id\":\"9f7dfa0c-eb40-42be-8d45-8af4a9219c6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Microsoft Authenticator authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Microsoft Authenticator authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Microsoft Authentication methods.\",\"id\":\"1b7322b2-5cb3-4f13-928f-d7ca97c5fba9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Microsoft Authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Microsoft + Authentication methods\",\"value\":\"UserAuthMethod-MicrosoftAuthApp.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's passkey authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's passkey authentication methods\",\"id\":\"828fcbda-0d26-431d-8bfb-83f217224621\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your passkey authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your passkey + authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read\"},{\"adminConsentDescription\":\"Allows the app to read passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication @@ -31816,6 +31033,14 @@ interactions: to in your organization.This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's passkey authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's passkey authentication methods\",\"id\":\"b2de7db9-10f7-4800-b04c-b5b91e4891d6\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your passkey authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite\"},{\"adminConsentDescription\":\"Allows the app to read and write passkey authentication methods of all users in your organization that the signed-in user has access to. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use @@ -31826,6 +31051,250 @@ interactions: information like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read and write all users' passkey authentication methods\",\"value\":\"UserAuthMethod-Passkey.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's password authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's password authentication methods\",\"id\":\"7f0f82c3-de19-4ddc-810d-a2206d7637fd\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your password authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your password + authentication methods\",\"value\":\"UserAuthMethod-Password.Read\"},{\"adminConsentDescription\":\"Allows + the app to read password authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' password authentication + methods\",\"id\":\"4f69a4e2-2aa0-43a7-ad6b-98b4cda1f23f\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read password authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' password authentication methods\",\"value\":\"UserAuthMethod-Password.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's password authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's password authentication methods\",\"id\":\"60cce20d-d41e-4594-b391-84bbf8cc31f3\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your password authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your password authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write password authentication methods of all users in + your organization that the signed-in user has access to. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' password methods.\",\"id\":\"7f5b683d-df96-4690-a88d-6e336ed6dc7c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write password authentication methods of all users you + have access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' password + authentication methods\",\"value\":\"UserAuthMethod-Password.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's phone authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's phone authentication methods\",\"id\":\"43dab3b9-e8b4-424d-8e13-6a2ad2a625fa\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your phone authentication methods. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read your phone + authentication methods\",\"value\":\"UserAuthMethod-Phone.Read\"},{\"adminConsentDescription\":\"Allows + the app to read phone authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' phone authentication + methods\",\"id\":\"20cf4ae1-09b9-4d29-a6f8-43e1820ce60c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read phone authentication methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' phone authentication methods\",\"value\":\"UserAuthMethod-Phone.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's phone authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's phone authentication methods\",\"id\":\"6c4aad61-f76b-46ad-a22c-57d4d3d962af\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write your phone authentication methods. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your phone authentication methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Phone methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' phone methods.\",\"id\":\"48c99302-9a24-4f27-a8a7-acef4debba14\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read and write phone methods of all users you have access to in + your organization. This does not allow the app to see secret information like + passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write all users' phone methods\",\"value\":\"UserAuthMethod-Phone.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's platform credential authentication methods\",\"id\":\"9c694582-e8f2-40e2-8353-fb43e2e0f12a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your platform credential authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.Read\"},{\"adminConsentDescription\":\"Allows + the app to read platform credentials methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' platform credentials + methods\",\"id\":\"5936156c-f89b-4850-997d-026c4e6ce529\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read platform credentials methods of all users you have access + to in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' platform credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's platform credential authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's platform credential authentication methods\",\"id\":\"70327f81-b953-43c9-92d3-131c74e4beb8\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your platform credential authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your platform credential authentication methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' platform credentials methods.\",\"id\":\"cb11bf8c-dde1-4504-b6a5-31e1562b0749\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write platform credentials methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' platform + credentials methods\",\"value\":\"UserAuthMethod-PlatformCred.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's QR authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's QR authentication methods\",\"id\":\"d6893c31-9187-405c-8dfc-f700c8fc161a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your QR authentication methods. This does not allow the app + to see secret information like passwords, or to sign-in or otherwise use the + authentication methods.\",\"userConsentDisplayName\":\"Read your QR authentication + methods\",\"value\":\"UserAuthMethod-QR.Read\"},{\"adminConsentDescription\":\"Allows + the app to read QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' QR methods\",\"id\":\"e4900dfb-ad17-410d-8ddb-7aebd8a6af1a\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read QR authentication methods of all users you have access to + in your organization. This does not allow the app to see secret information + like passwords, or to sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + all users' QR methods\",\"value\":\"UserAuthMethod-QR.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's QR authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's QR authentication methods\",\"id\":\"651210da-18ce-4e42-b7db-302ff88e9326\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your QR authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read and write + your QR authentication methods\",\"value\":\"UserAuthMethod-QR.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read and write all users' QR methods.\",\"id\":\"db39086a-da7d-4cbd-9ac0-6816f9a80c95\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write QR authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' QR methods\",\"value\":\"UserAuthMethod-QR.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's SoftwareOATH authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's SoftwareOATH authentication methods\",\"id\":\"247f2733-6e3d-46ff-a904-f5fd58eb0d97\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your SoftwareOATH authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your SoftwareOATH + authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read\"},{\"adminConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users in your organization + that the signed-in user has access to. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"adminConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"id\":\"3e366fa0-3097-4eb6-8294-3028f77eea6f\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read SoftwareOATH authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' SoftwareOATH methods\",\"value\":\"UserAuthMethod-SoftwareOATH.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's SoftwareOATH authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's SoftwareOATH authentication methods\",\"id\":\"16721eb3-4493-4ae1-9542-264d9ffe3ce9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your SoftwareOATH authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your SoftwareOATH authentication methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' SoftwareOATH methods.\",\"id\":\"5b34c8b5-2396-4b35-b284-83fb6a3e73ce\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write SoftwareOATH authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' SoftwareOATH + methods\",\"value\":\"UserAuthMethod-SoftwareOATH.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"84ded88f-26ba-49d6-b776-efec398de692\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Temporary Access Pass authentication methods. This does + not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Temporary Access Pass methods\",\"id\":\"6976c635-c9c2-41e6-a21d-e6913a155273\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Temporary Access Pass authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Temporary Access Pass + methods\",\"value\":\"UserAuthMethod-TAP.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Temporary Access Pass authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Temporary Access Pass authentication methods\",\"id\":\"2424436d-902f-4651-a1c7-b3b93147c960\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Temporary Access Pass authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Temporary Access Pass authentication methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users in your organization that the signed-in user has access to. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write all users' Temporary Access Pass methods.\",\"id\":\"05de4a66-e51a-4312-842a-30c8094698d2\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Temporary Access Pass authentication methods of + all users you have access to in your organization. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"userConsentDisplayName\":\"Read and write + all users' Temporary Access Pass methods\",\"value\":\"UserAuthMethod-TAP.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read the signed-in user's Windows Hello authentication methods. + This does not allow the app to see secret information like passwords, or to + sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + the signed-in user's Windows Hello methods\",\"id\":\"efe2b5aa-3a8e-486c-b0be-cc4d185c1b40\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your Windows Hello authentication methods. This does not allow + the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"userConsentDisplayName\":\"Read your Windows + Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.Read\"},{\"adminConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users in your + organization that the signed-in user has access to. This does not allow the + app to see secret information like passwords, or to sign-in or otherwise use + the authentication methods.\",\"adminConsentDisplayName\":\"Read all users' + Windows Hello methods\",\"id\":\"ff37d46d-b88a-4e0c-85ee-7e26c37b18eb\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read Windows Hello authentication methods of all users you have + access to in your organization. This does not allow the app to see secret + information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read all users' Windows Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write the signed-in user's Windows Hello authentication + methods. This does not allow the app to see secret information like passwords, + or to sign-in or otherwise use the authentication methods.\",\"adminConsentDisplayName\":\"Read + and write the signed-in user's Windows Hello authentication methods\",\"id\":\"f11e1db9-d419-4a24-b677-792723ffd727\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your Windows Hello authentication methods. This + does not allow the app to see secret information like passwords, or to sign-in + or otherwise use the authentication methods.\",\"userConsentDisplayName\":\"Read + and write your Windows Hello authentication methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite\"},{\"adminConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + in your organization that the signed-in user has access to. This does not + allow the app to see secret information like passwords, or to sign-in or otherwise + use the authentication methods.\",\"adminConsentDisplayName\":\"Read and write + all users' Windows Hello methods.\",\"id\":\"13eae17d-aaa4-47b8-aaee-0eb33c6e2450\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write Windows Hello authentication methods of all users + you have access to in your organization. This does not allow the app to see + secret information like passwords, or to sign-in or otherwise use the authentication + methods.\",\"userConsentDisplayName\":\"Read and write all users' Windows + Hello methods\",\"value\":\"UserAuthMethod-WindowsHello.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows + the app to read cloud clipboard data on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + cloud clipboard items\",\"id\":\"61e8a09a-087f-4e36-8c8c-1c77c5228017\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows + the app to read your cloud clipboard items.\",\"userConsentDisplayName\":\"Read + cloud clipboard items\",\"value\":\"UserCloudClipboard.Read\"},{\"adminConsentDescription\":\"Allows the app to send, read, update and delete user\u2019s notifications.\",\"adminConsentDisplayName\":\"Deliver and manage user's notifications\",\"id\":\"26e2f3e8-b2a1-47fc-9620-89bb5b042024\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to send, read, update and delete your app-specific notifications.\",\"userConsentDisplayName\":\"Deliver @@ -31838,15 +31307,36 @@ interactions: Timeline.\",\"adminConsentDisplayName\":\"Write app activity to users' timeline\",\"id\":\"367492fc-594d-4972-a9b5-0d58c622c91c\",\"isEnabled\":true,\"type\":\"User\",\"userConsentDescription\":\"Allows the app to report your app activity information to Microsoft Timeline.\",\"userConsentDisplayName\":\"Write app activity to your timeline\",\"value\":\"UserTimelineActivity.Write.CreatedByApp\"},{\"adminConsentDescription\":\"Allows + the app to read a user's windows settings which are stored in cloud and their + values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + windows settings for all devices\",\"id\":\"77e07bab-1b34-40a5-bb6c-4b197b3f6027\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read your windows settings which are stored in cloud and their + values.\",\"userConsentDisplayName\":\"Read your windows settings for all + devices\",\"value\":\"UserWindowsSettings.Read.All\"},{\"adminConsentDescription\":\"Allows + the app to read and write a user's windows settings which are stored in cloud + and their values on behalf of the signed-in user.\",\"adminConsentDisplayName\":\"Read + and write windows settings for all devices\",\"id\":\"dcb1026d-b7e1-4d31-9f61-6724d5140bf9\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write your windows settings which are stored in cloud + and their values.\",\"userConsentDisplayName\":\"Read and write your windows + settings for all devices\",\"value\":\"UserWindowsSettings.ReadWrite.All\"},{\"adminConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + Verified Id profiles\",\"id\":\"604b2056-41ed-4c56-aad5-1241d4ef7333\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + Verified Id profiles\",\"value\":\"VerifiedId-Profile.Read.All\"},{\"adminConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"adminConsentDisplayName\":\"Read + and write Verified Id profiles\",\"id\":\"e4a9cb5e-4767-48f8-9029-decf26a54456\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"This + role can read and write Verified Id profiles in a tenant.\",\"userConsentDisplayName\":\"Read + and write Verified Id profiles\",\"value\":\"VerifiedId-Profile.ReadWrite.All\"},{\"adminConsentDescription\":\"Allows an application to read virtual appointments for the signed-in user. Only an - organizer or participant user can read their virtual appointments.\\u202F\\u00A0\",\"adminConsentDisplayName\":\"Read + organizer or participant user can read their virtual appointments. \",\"adminConsentDisplayName\":\"Read a user's virtual appointments\",\"id\":\"27470298-d3b8-4b9c-aad4-6334312a3eac\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read virtual appointments on your behalf.\\u202F\\u202F\",\"userConsentDisplayName\":\"Read - your virtual appointments\\u202F\",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows + the app to read virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read + your virtual appointments \",\"value\":\"VirtualAppointment.Read\"},{\"adminConsentDescription\":\"Allows an application to read and write virtual appointments for the signed-in user. - Only an organizer or participant user can read and write their virtual appointments.\\u202F\",\"adminConsentDisplayName\":\"Read - and write a user's virtual appointments\\u202F\\u00A0\",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows - the app to read and write virtual appointments on your behalf.\\u202F\\u00A0\",\"userConsentDisplayName\":\"Read + Only an organizer or participant user can read and write their virtual appointments. + \",\"adminConsentDisplayName\":\"Read and write a user's virtual appointments + \ \",\"id\":\"2ccc2926-a528-4b17-b8bb-860eed29d64c\",\"isEnabled\":true,\"type\":\"Admin\",\"userConsentDescription\":\"Allows + the app to read and write virtual appointments on your behalf. \",\"userConsentDisplayName\":\"Read and write your virtual appointments\",\"value\":\"VirtualAppointment.ReadWrite\"},{\"adminConsentDescription\":\"Allows an application to send notifications for virtual appointments for the signed-in user.\",\"adminConsentDisplayName\":\"Send notification regarding virtual @@ -31881,11 +31371,20 @@ interactions: workforce integrations\",\"value\":\"WorkforceIntegration.ReadWrite.All\"}],\"passwordCredentials\":[],\"resourceSpecificApplicationPermissions\":[{\"description\":\"Allows the app to read user AI enterprise interactions, without a signed-in user.\",\"displayName\":\"Read user AI enterprise interactions.\",\"id\":\"10d712aa-b4cd-4472-b0ba-6196e04c344f\",\"isEnabled\":true,\"value\":\"AiEnterpriseInteraction.Read.User\"},{\"description\":\"Allows + the teams-app to read all aiInsights for calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all AI Insights for calls + where the Teams application is installed.\",\"id\":\"ff9d3910-ca91-4e7f-843f-d44ab36a961a\",\"isEnabled\":true,\"value\":\"CallAiInsights.Read.Chat\"},{\"description\":\"Allows + the teams-app to read all recordings of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all recordings of calls + where the Teams application is installed.\",\"id\":\"22748df0-bd8c-4626-aad9-6dab421b33e4\",\"isEnabled\":true,\"value\":\"CallRecordings.Read.Chat\"},{\"description\":\"Allows the app to access media streams in calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Access media streams in calls associated with this chat or meeting\",\"id\":\"e716890c-c30a-4ac3-a0e3-551e7d9e8deb\",\"isEnabled\":true,\"value\":\"Calls.AccessMedia.Chat\"},{\"description\":\"Allows the app to join calls associated with this chat or meeting, without a signed-in user.\",\"displayName\":\"Join calls associated with this chat or meeting\",\"id\":\"a01e73f1-94da-4f6d-9b73-02e4ea65560b\",\"isEnabled\":true,\"value\":\"Calls.JoinGroupCalls.Chat\"},{\"description\":\"Allows + the Teams app to read all transcripts of calls where the Teams-app is installed, + without a signed-in user.\",\"displayName\":\"Read all transcripts of calls + where the Teams app is installed.\",\"id\":\"7990a5df-4c51-43ea-939c-3e8b18d6ddad\",\"isEnabled\":true,\"value\":\"CallTranscripts.Read.Chat\"},{\"description\":\"Allows the app to create channels in this team, without a signed-in user.\",\"displayName\":\"Create channels in this team\",\"id\":\"65af85d7-62bb-4339-a206-7160fd427454\",\"isEnabled\":true,\"value\":\"Channel.Create.Group\"},{\"description\":\"Allows the app to delete this team's channels, without a signed-in user.\",\"displayName\":\"Delete @@ -31938,10 +31437,16 @@ interactions: and write this chat's settings\",\"id\":\"ed928a9c-7530-496a-a624-4c0a460ab3ed\",\"isEnabled\":true,\"value\":\"ChatSettings.ReadWrite.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's members, without a signed-in user.\",\"displayName\":\"Read this group's members\",\"id\":\"0a8ce3c7-89dd-46cf-b2c3-5ef0064437a8\",\"isEnabled\":true,\"value\":\"Member.Read.Group\"},{\"description\":\"Allows + the app to read this meeting and subscribe to meeting call updates.\",\"displayName\":\"Read + this meeting and subscribe to meeting call updates .\",\"id\":\"f991ed3f-9617-4d8d-b06c-d18d9fcbcf2a\",\"isEnabled\":true,\"value\":\"OnlineMeeting.Read.Chat\"},{\"description\":\"Allows the app to read basic properties, such as name, schedule, organizer, join link, and start or end notifications, of meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read basic properties of meetings associated with this chat\",\"id\":\"eda8d262-4e6e-4ff6-a7ba-a2fb50535165\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadBasic.Chat\"},{\"description\":\"Allows + the app to manage this online meeting, and subscribe to meeting call updates.\",\"displayName\":\"Manage + this meeting and subscribe to meeting call updates.\",\"id\":\"93400bb4-2282-4371-a745-a86d64c966d0\",\"isEnabled\":true,\"value\":\"OnlineMeeting.ReadWrite.Chat\"},{\"description\":\"Read + attendance reports & attendance records for this webinar or town hall.\",\"displayName\":\"Read + virtual event artifacts\",\"id\":\"c5d06837-8c0d-42fc-9e49-545e3f941261\",\"isEnabled\":true,\"value\":\"OnlineMeetingArtifact.Read.Chat\"},{\"description\":\"Allows the app to send notifications inside meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Send notifications in the meetings associated with this chat\",\"id\":\"d9837fe0-9c31-4faa-8acb-b10874560161\",\"isEnabled\":true,\"value\":\"OnlineMeetingNotification.Send.Chat\"},{\"description\":\"Allows @@ -31951,9 +31456,9 @@ interactions: with this chat\",\"id\":\"6324a770-185c-4b4f-be13-2d9a1668e6eb\",\"isEnabled\":true,\"value\":\"OnlineMeetingParticipant.Read.Chat\"},{\"description\":\"Allows the app to read recordings of the meetings associated with this chat, without a signed-in user.\",\"displayName\":\"Read the recordings of the meetings - associated with this chat\\u00A0\",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows + associated with this chat \",\"id\":\"d20f0153-08ff-48a9-b299-96a8d1131d1d\",\"isEnabled\":true,\"value\":\"OnlineMeetingRecording.Read.Chat\"},{\"description\":\"Allows the app to read transcripts of the meetings associated with this chat, without - a signed-in user.\\u00A0\",\"displayName\":\"Read the transcripts of the meetings + a signed-in user. \",\"displayName\":\"Read the transcripts of the meetings associated with this chat\",\"id\":\"8c477e19-f0f7-45f9-ae72-604f77a599e3\",\"isEnabled\":true,\"value\":\"OnlineMeetingTranscript.Read.Chat\"},{\"description\":\"Allows the app to read the basic profile of this group's owners, without a signed-in user.\",\"displayName\":\"Read this group's owners\",\"id\":\"70d5316c-9b27-4057-a650-3b0fe49002ab\",\"isEnabled\":true,\"value\":\"Owner.Read.Group\"},{\"description\":\"Allows @@ -32000,20 +31505,25 @@ interactions: the app to manage this chat's tabs, without a signed-in user.\",\"displayName\":\"Manage this chat's tabs\",\"id\":\"d583f4d7-57da-4b2c-9744-253e9ec3c7be\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Chat\"},{\"description\":\"Allows the app to manage this team's tabs, without a signed-in user.\",\"displayName\":\"Manage - this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"}],\"samlSingleSignOnSettings\":{\"relayState\":null},\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" + this team's tabs\",\"id\":\"717ca3a4-bc73-47f8-b613-4d43e657fa9c\",\"isEnabled\":true,\"value\":\"TeamsTab.ReadWrite.Group\"},{\"description\":\"Read + information for this webinars or town halls, including schedules, speakers, + and event settings and webinar registrations.\",\"displayName\":\"Read virtual + event details\",\"id\":\"298266a0-fbf7-4804-b988-5a54e61566c8\",\"isEnabled\":true,\"value\":\"VirtualEvent.Read.Chat\"},{\"description\":\"Register + attendees and cancel registrations for this webinar.\",\"displayName\":\"Manage + virtual event registrations\",\"id\":\"0e646cc8-6b07-4030-9a41-a7db4644b4cc\",\"isEnabled\":true,\"value\":\"VirtualEventRegistration-Anon.ReadWrite.Chat\"}],\"verifiedPublisher\":{\"displayName\":null,\"verifiedPublisherId\":null,\"addedDateTime\":null}}]}" headers: cache-control: - no-cache content-length: - - '550263' + - '676759' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:44 GMT + - Wed, 24 Dec 2025 05:50:24 GMT odata-version: - '4.0' request-id: - - 428067cd-98ae-4d71-86c6-fbb0b5b36a5a + - 0479e10b-d5f7-425d-8c9d-bd2a961c2e21 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -32021,7 +31531,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Japan East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"TY1PEPF0000605F"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF0001836B"}}' x-ms-resource-unit: - '1' status: @@ -32041,9 +31551,9 @@ interactions: ParameterSetName: - -n -g --msi-client-id User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.71.0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.81.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals/3289ca6d-17dc-43d7-99ab-55c2aa49338a/appRoleAssignments + uri: https://graph.microsoft.com/v1.0/servicePrincipals/562c81c5-d273-4843-9627-c0944d91e825/appRoleAssignments response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#appRoleAssignments","value":[]}' @@ -32055,11 +31565,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 02 Apr 2025 09:38:46 GMT + - Wed, 24 Dec 2025 05:50:25 GMT odata-version: - '4.0' request-id: - - 3634d225-63e8-45b0-a74b-9cc52cf916c3 + - 0fd5c999-e862-4eb1-bc80-b9c7033c6daf strict-transport-security: - max-age=31536000 transfer-encoding: @@ -32067,7 +31577,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Japan East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"TY1PEPF00006060"}}' + - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SG1PEPF0001836A"}}' x-ms-resource-unit: - '2' status: diff --git a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py index 6c638946b84..6711a747265 100644 --- a/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py @@ -48,7 +48,7 @@ def __init__(self, name_prefix=sqlvm_name_prefix, location='westus', def create_resource(self, name, **kwargs): group = self._get_resource_group(**kwargs) template = ('az vm create -l {} -g {} -n {} --admin-username {} --admin-password {} --image {}' - ' --size Standard_DS2_v2 --nsg-rule NONE') + ' --size Standard_B2ms --nsg-rule NONE') execute(DummyCli(), template.format(self.location, group, name, self.vm_user, self.vm_password, self.image)) return {self.parameter_name: name} From 905d472d587b6e020ce7f4d717aaba924086bd51 Mon Sep 17 00:00:00 2001 From: william051200 Date: Fri, 26 Dec 2025 08:08:04 +0800 Subject: [PATCH 26/32] [Test] - Re-record test case --- .../recordings/test_vm_explicit_msi.yaml | 2883 ++++++- .../tests/latest/recordings/test_vm_msi.yaml | 7083 +---------------- 2 files changed, 2971 insertions(+), 6995 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml index c34f37452bf..7e78b88e82b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_explicit_msi.yaml @@ -18,7 +18,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-23T03:14:48Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-25T23:39:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:14:52 GMT + - Thu, 25 Dec 2025 23:40:09 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A6F76253D6C448539DECE5EB9F518753 Ref B: SG2AA1070304025 Ref C: 2025-12-23T03:14:53Z' + - 'Ref A: 88910D62C4224443A1E41BE018DEFBA9 Ref B: SG2AA1040517029 Ref C: 2025-12-25T23:40:09Z' status: code: 200 message: OK @@ -68,7 +68,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{"tag1":"d1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1","name":"id1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"2aa7b9ee-ff03-4bb2-81ce-f08e31e01a73","clientId":"1ef9daa7-2a11-477a-805a-2bff345cd466"}}' + string: '{"location":"westus","tags":{"tag1":"d1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1","name":"id1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"a2202783-a5e3-4460-86fc-f856b250d878","clientId":"a05fe702-1173-4fe8-93db-c572654ed3cb"}}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:14:54 GMT + - Thu, 25 Dec 2025 23:40:19 GMT expires: - '-1' location: @@ -91,13 +91,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/c03c2994-6ace-4d9b-9552-62bbce7955be + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/08457d22-998d-4469-9b52-265de33ae5cb x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: B4C276CCA0284FFB88E36F7940438487 Ref B: SG2AA1040519040 Ref C: 2025-12-23T03:14:53Z' + - 'Ref A: 498168244A8D48C29069A45800889FE0 Ref B: SG2AA1040513052 Ref C: 2025-12-25T23:40:13Z' status: code: 201 message: Created @@ -120,7 +120,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-23T03:14:48Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-25T23:39:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:14:55 GMT + - Thu, 25 Dec 2025 23:40:20 GMT expires: - '-1' pragma: @@ -143,7 +143,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 29CD54BC8CB340E4A3B8BA7EA97DDDAC Ref B: SG2AA1070302023 Ref C: 2025-12-23T03:14:55Z' + - 'Ref A: 3583B689616A4253A32A9533BE616477 Ref B: SG2AA1070301040 Ref C: 2025-12-25T23:40:20Z' status: code: 200 message: OK @@ -170,7 +170,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2","name":"id2","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"0817260b-b83e-4b68-a60a-a6ff700993c5","clientId":"5665a77a-315a-4412-815f-4b152063bdf2"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2","name":"id2","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9","principalId":"dbacc8d6-2fb9-43be-9d06-d36356c441b4","clientId":"ad438269-c7b1-48cf-8d4b-bc5bd7199dee"}}' headers: cache-control: - no-cache @@ -179,7 +179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:14:57 GMT + - Thu, 25 Dec 2025 23:40:25 GMT expires: - '-1' location: @@ -193,13 +193,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/038c8d6a-4523-4501-983b-327799a90599 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/85810b30-41ea-4bee-a3eb-78081f33a852 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 78BCC9E9A4EC420DA2ACC1288ED885A4 Ref B: SG2AA1070304036 Ref C: 2025-12-23T03:14:56Z' + - 'Ref A: 7BD90034A02A412DAE6B2E76D578DBD7 Ref B: SG2AA1040516023 Ref C: 2025-12-25T23:40:21Z' status: code: 201 message: Created @@ -216,14 +216,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-23T03:14:48Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-25T23:39:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -232,7 +232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:14:59 GMT + - Thu, 25 Dec 2025 23:40:27 GMT expires: - '-1' pragma: @@ -246,7 +246,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 144C54EB0A2448A689797A52FB0EF582 Ref B: SG2AA1070301029 Ref C: 2025-12-23T03:14:59Z' + - 'Ref A: AF481A30452A43649FEE8232B5148F84 Ref B: SG2AA1040519054 Ref C: 2025-12-25T23:40:26Z' status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:00 GMT + - Thu, 25 Dec 2025 23:40:27 GMT expires: - '-1' pragma: @@ -293,13 +293,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/e14022a1-df35-4deb-a7b8-1b516ddae163 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/1d45b5ec-5914-4cf3-a9ff-e1981d04cfbe x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FF7DA2D042EB4E72A34AD4BF98E7A1F8 Ref B: SG2AA1070305054 Ref C: 2025-12-23T03:14:59Z' + - 'Ref A: 9AAAD418110A48D5B202A3F808266B0C Ref B: SG2AA1040512052 Ref C: 2025-12-25T23:40:27Z' status: code: 200 message: OK @@ -316,7 +316,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -346,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:00 GMT + - Thu, 25 Dec 2025 23:40:27 GMT expires: - '-1' pragma: @@ -358,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/d56768bc-438a-4201-b772-49fca81a4720 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/3e7f4f1f-c2ed-45e2-b398-c2345133130b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73986 + - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 97983A9D98214A1BAA3D9593AD86D7D2 Ref B: SG2AA1040518042 Ref C: 2025-12-23T03:15:00Z' + - 'Ref A: 4A9A4D84BE0D495884B32F7D283E7FED Ref B: SG2AA1070301062 Ref C: 2025-12-25T23:40:27Z' status: code: 200 message: OK @@ -381,7 +381,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -1892,7 +1892,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:01 GMT + - Thu, 25 Dec 2025 23:40:28 GMT expires: - '-1' pragma: @@ -1906,7 +1906,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B52C7BCB91A841C89D7FDA9901254C1B Ref B: SG2AA1070304042 Ref C: 2025-12-23T03:15:01Z' + - 'Ref A: 8CAD403CC63647C7A77FAAA448646A65 Ref B: SG2AA1070306023 Ref C: 2025-12-25T23:40:28Z' status: code: 200 message: OK @@ -1923,7 +1923,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -1941,7 +1941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:02 GMT + - Thu, 25 Dec 2025 23:40:30 GMT expires: - '-1' pragma: @@ -1955,7 +1955,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 33A8EC28F1CF4693B7E572F5CCFC3506 Ref B: SG2AA1070302042 Ref C: 2025-12-23T03:15:02Z' + - 'Ref A: 5D5C4FB5B0F84FFF9A67F78F3FC24D65 Ref B: SG2AA1040517060 Ref C: 2025-12-25T23:40:29Z' status: code: 404 message: Not Found @@ -1972,7 +1972,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -1990,7 +1990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:03 GMT + - Thu, 25 Dec 2025 23:40:31 GMT expires: - '-1' pragma: @@ -2002,13 +2002,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0e19dcc8-dff9-4ea7-9053-4ec5dc4d3f1a + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/ffb3c19b-4837-4c40-a080-94b9c3885dd2 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 830CCB2EA8F84C528C4EEB2FDAB698AB Ref B: SG2AA1070306031 Ref C: 2025-12-23T03:15:03Z' + - 'Ref A: ABBAD5AD181E4D338B20982513911B71 Ref B: SG2AA1070305031 Ref C: 2025-12-25T23:40:30Z' status: code: 200 message: OK @@ -2025,7 +2025,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -2055,7 +2055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:04 GMT + - Thu, 25 Dec 2025 23:40:31 GMT expires: - '-1' pragma: @@ -2067,13 +2067,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/d3643ce7-926c-4993-8f57-757f815d37a6 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/1ed20ce7-ebfe-422f-afb8-3543dc761f45 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73985 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6EF38E478C6647FFAF37355B02932388 Ref B: SG2AA1040512040 Ref C: 2025-12-23T03:15:03Z' + - 'Ref A: BE70712694CD44D7A2D8B3C1DD9CAF83 Ref B: SG2AA1040520031 Ref C: 2025-12-25T23:40:31Z' status: code: 200 message: OK @@ -2090,7 +2090,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -2108,7 +2108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:05 GMT + - Thu, 25 Dec 2025 23:40:32 GMT expires: - '-1' pragma: @@ -2120,13 +2120,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/3a0155f7-5ba4-42ae-bcba-7c3e1faf1370 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/4d9b7055-f4a7-49f3-ae43-f0e60a3a2485 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 98C767BE3B434821A8339748BD3C0663 Ref B: SG2AA1070305062 Ref C: 2025-12-23T03:15:04Z' + - 'Ref A: BEF7D21E92DC4DBB8C01E204F40E9F23 Ref B: SG2AA1070302052 Ref C: 2025-12-25T23:40:32Z' status: code: 200 message: OK @@ -2143,7 +2143,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -2173,7 +2173,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:05 GMT + - Thu, 25 Dec 2025 23:40:33 GMT expires: - '-1' pragma: @@ -2185,13 +2185,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/641816dd-365f-4b66-86ce-1f31525082d5 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0b625f91-abd7-4aee-9b73-3ebe0554927e x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73984 + - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5640C83B122F4F0BBCD09D6039D4D6D8 Ref B: SG2AA1040513040 Ref C: 2025-12-23T03:15:05Z' + - 'Ref A: 1BEE8BC45C5D456188C716F8E5051CEC Ref B: SG2AA1070303034 Ref C: 2025-12-25T23:40:33Z' status: code: 200 message: OK @@ -2208,7 +2208,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -3719,7 +3719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:07 GMT + - Thu, 25 Dec 2025 23:40:35 GMT expires: - '-1' pragma: @@ -3733,7 +3733,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 76535EAC18D04ECDAEB26BC23CD4F954 Ref B: SG2AA1040520029 Ref C: 2025-12-23T03:15:06Z' + - 'Ref A: 497FD0235E7D4E079B5461F8198323B0 Ref B: SG2AA1070305052 Ref C: 2025-12-25T23:40:34Z' status: code: 200 message: OK @@ -3750,7 +3750,7 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET @@ -3768,7 +3768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:08 GMT + - Thu, 25 Dec 2025 23:40:37 GMT expires: - '-1' pragma: @@ -3782,7 +3782,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 0D3A5280045A49CD8888A6F1BFA642A7 Ref B: SG2AA1040518060 Ref C: 2025-12-23T03:15:08Z' + - 'Ref A: 36DC176928F144879FD1F90289C4B694 Ref B: SG2AA1040512031 Ref C: 2025-12-25T23:40:37Z' status: code: 404 message: Not Found @@ -3806,7 +3806,7 @@ interactions: "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"}}}, {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": "vm2", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm2VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": @@ -3827,12 +3827,2751 @@ interactions: Connection: - keep-alive Content-Length: - - '3418' + - '3416' Content-Type: - application/json ParameterSetName: - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet - --vnet-name --nsg-rule + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MYxGBAEDiH0BWz1mfa6oNsFgp4DtZWWy","name":"vm_deploy_MYxGBAEDiH0BWz1mfa6oNsFgp4DtZWWy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16598655761619995288","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-25T23:40:38.4790025Z","duration":"PT0.0002293S","correlationId":"f038916c-f2d7-4ab5-9701-eedc815f68ad","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MYxGBAEDiH0BWz1mfa6oNsFgp4DtZWWy/operationStatuses/08584349008469866053?api-version=2024-11-01&t=639023028398541074&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uVKV41jfaBYSqCQmJ_un9nKbHwIGi-e1Y7JbIeSW9VbbNIZrPqRprjariSreH_aYqipJKZ1VbIdadsPfAxFzDSTqC4j6UrOX0LH2YnIVW3QYFHgCpCoNQ6oGqBwT1Tv_p1rlqGt9KHl6txyV1THIT7ce1zoxZDR4zTpO1DjnZG_x2bcc5Ns8YZ6Jj5rM8n4oC_YGAQEvBXamfxPGuQ_q12ntyrevFZZ0RW1bfTzTZ5mD-A-5E4xj_Xq0a8w4uc-UeBQTQ8LSWmkZf7jo7K6EmCKTi8yjO0Nkfjm_qpjYgbryRyIghmspLXgoiRxUm66thgnhRUSY5kGbpW7hYdBgDw&h=psyLPycJ9N1G4O7OF0dRXwc2tZKK1rL2RtUUWeQYR3w + cache-control: + - no-cache + content-length: + - '2326' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:40:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-deployment-engine-version: + - 1.560.0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: E56AE4B85666459FB67C3E908FFAA2EB Ref B: SG2AA1040517042 Ref C: 2025-12-25T23:40:37Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584349008469866053?api-version=2024-11-01&t=639023028398541074&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uVKV41jfaBYSqCQmJ_un9nKbHwIGi-e1Y7JbIeSW9VbbNIZrPqRprjariSreH_aYqipJKZ1VbIdadsPfAxFzDSTqC4j6UrOX0LH2YnIVW3QYFHgCpCoNQ6oGqBwT1Tv_p1rlqGt9KHl6txyV1THIT7ce1zoxZDR4zTpO1DjnZG_x2bcc5Ns8YZ6Jj5rM8n4oC_YGAQEvBXamfxPGuQ_q12ntyrevFZZ0RW1bfTzTZ5mD-A-5E4xj_Xq0a8w4uc-UeBQTQ8LSWmkZf7jo7K6EmCKTi8yjO0Nkfjm_qpjYgbryRyIghmspLXgoiRxUm66thgnhRUSY5kGbpW7hYdBgDw&h=psyLPycJ9N1G4O7OF0dRXwc2tZKK1rL2RtUUWeQYR3w + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:40:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 101560424D364F54B468AE730CCABB31 Ref B: SG2AA1040516040 Ref C: 2025-12-25T23:40:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584349008469866053?api-version=2024-11-01&t=639023028398541074&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uVKV41jfaBYSqCQmJ_un9nKbHwIGi-e1Y7JbIeSW9VbbNIZrPqRprjariSreH_aYqipJKZ1VbIdadsPfAxFzDSTqC4j6UrOX0LH2YnIVW3QYFHgCpCoNQ6oGqBwT1Tv_p1rlqGt9KHl6txyV1THIT7ce1zoxZDR4zTpO1DjnZG_x2bcc5Ns8YZ6Jj5rM8n4oC_YGAQEvBXamfxPGuQ_q12ntyrevFZZ0RW1bfTzTZ5mD-A-5E4xj_Xq0a8w4uc-UeBQTQ8LSWmkZf7jo7K6EmCKTi8yjO0Nkfjm_qpjYgbryRyIghmspLXgoiRxUm66thgnhRUSY5kGbpW7hYdBgDw&h=psyLPycJ9N1G4O7OF0dRXwc2tZKK1rL2RtUUWeQYR3w + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F5185F7DFDE043C191E2E8D80AF100ED Ref B: SG2AA1070303029 Ref C: 2025-12-25T23:41:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584349008469866053?api-version=2024-11-01&t=639023028398541074&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=uVKV41jfaBYSqCQmJ_un9nKbHwIGi-e1Y7JbIeSW9VbbNIZrPqRprjariSreH_aYqipJKZ1VbIdadsPfAxFzDSTqC4j6UrOX0LH2YnIVW3QYFHgCpCoNQ6oGqBwT1Tv_p1rlqGt9KHl6txyV1THIT7ce1zoxZDR4zTpO1DjnZG_x2bcc5Ns8YZ6Jj5rM8n4oC_YGAQEvBXamfxPGuQ_q12ntyrevFZZ0RW1bfTzTZ5mD-A-5E4xj_Xq0a8w4uc-UeBQTQ8LSWmkZf7jo7K6EmCKTi8yjO0Nkfjm_qpjYgbryRyIghmspLXgoiRxUm66thgnhRUSY5kGbpW7hYdBgDw&h=psyLPycJ9N1G4O7OF0dRXwc2tZKK1rL2RtUUWeQYR3w + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4559AFDD792046BABFA0413527D14516 Ref B: SG2AA1040517054 Ref C: 2025-12-25T23:41:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MYxGBAEDiH0BWz1mfa6oNsFgp4DtZWWy","name":"vm_deploy_MYxGBAEDiH0BWz1mfa6oNsFgp4DtZWWy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16598655761619995288","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-25T23:41:18.9951914Z","duration":"PT40.5161889S","correlationId":"f038916c-f2d7-4ab5-9701-eedc815f68ad","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '3094' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6CABE6EF6A8342198E0912910A91B88F Ref B: SG2AA1070304034 Ref C: 2025-12-25T23:41:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2025-04-01 + response: + body: + string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1\": + {\r\n \"principalId\": \"a2202783-a5e3-4460-86fc-f856b250d878\",\r\n + \ \"clientId\": \"a05fe702-1173-4fe8-93db-c572654ed3cb\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"2054c419-97d7-42e6-9a20-ec5516c15cb7\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n + \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm2_OsDisk_1_72736b3228f14dafbc0c48d949a27f49\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_72736b3228f14dafbc0c48d949a27f49\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"ubuntuadmin\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/ubuntuadmin/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkOh2iDfHe9rJRL86GH7eUB+T08MZ+PmiPzJobcaOkOwTYfihPwsuKqbNXXB4C075i+jh3tm5pfBebJz5FNiwM+w5zyjFyCrNlaEzvzcQs79zAozhep1KEckN6dd5xjk3rvwmzHh4ZpofK79H1OkJv09kyQkF9y2cNSJgsEtjq1ToUTJXRpPYSxwpvd6CFFCS7GShuMQk/djrN7bVXSoIIPRyLiN73UD574HvnKGS13OYtmCAXrYUuruqrhXCBkpB/Z4IvQEbuR/TsFPCc54ek6Sm0UXZOp/iXYkXFoRZEVHQhUwj9g6NJz4zR/F3ZdgyYQfIHJ+tY+5UaoLwYNn2B\"\r\n + \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n + \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm2\",\r\n \"osName\": + \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2025-12-25T23:41:21+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm2_OsDisk_1_72736b3228f14dafbc0c48d949a27f49\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2025-12-25T23:40:50.5375455+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2025-12-25T23:41:18.1784699+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-25T23:40:47.3967991+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4184' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 789A54CE749A4FC7A2274CBA606EED5B Ref B: SG2AA1070304023 Ref C: 2025-12-25T23:41:45Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2022-01-01 + response: + body: + string: '{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"96182540-32ea-4137-bb03-46f4f330a5c7\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5452981b-88e9-4321-b9da-473348410f4c","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"96182540-32ea-4137-bb03-46f4f330a5c7\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"t0yx2ylnh0ievfgmd1qihdqq4c.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-02-E6-09","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' + headers: + cache-control: + - no-cache + content-length: + - '1928' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:45 GMT + etag: + - W/"96182540-32ea-4137-bb03-46f4f330a5c7" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8057f4dc-9e84-4627-83d9-4561d274ef49 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3D2BC05493474BB385B652003BD6C02C Ref B: SG2AA1070302031 Ref C: 2025-12-25T23:41:45Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --generate-ssh-keys --admin-username --subnet + --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2022-01-01 + response: + body: + string: '{"name":"vm2PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","etag":"W/\"8bba7762-9749-4b24-83a7-10fab9f4a6c8\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a44f3cd1-909f-44a0-9732-129d89ad6064","ipAddress":"20.253.152.173","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + headers: + cache-control: + - no-cache + content-length: + - '772' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:46 GMT + etag: + - W/"8bba7762-9749-4b24-83a7-10fab9f4a6c8" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f20311e6-8692-41e3-8964-c5262b3a00de + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 70308058F1A7430389945AEFE8ACCB70 Ref B: SG2AA1070304042 Ref C: 2025-12-25T23:41:46Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --default-outbound-access + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 + response: + body: + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"9e12aa2e-9c64-4239-ac5f-1b8def75db81\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG22DSPVQMDU/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + cache-control: + - no-cache + content-length: + - '664' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:48 GMT + etag: + - W/"9e12aa2e-9c64-4239-ac5f-1b8def75db81" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a44ba66e-4f8a-4f56-af5b-5cc6fd7b0bcd + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/e328c5a3-dabc-4932-95d7-041834a728ba + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 18BCFC22EA7845B383E2207B2283CA37 Ref B: SG2AA1070301060 Ref C: 2025-12-25T23:41:49Z' + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", + "name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": + false, "delegations": [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": + "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + Content-Length: + - '424' + Content-Type: + - application/json + ParameterSetName: + - -g --vnet-name -n --default-outbound-access + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 + response: + body: + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"e7f35c55-b463-409c-998c-629a7df9ea21\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/535a9753-4457-49e4-a81d-1fa8eb555e13?api-version=2024-07-01&t=639023029102490094&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=gPsXCaPz49W5yLxLoKxMplkHwn-I0cC5T1dufvKcQkcH8lpg_TR3AOjdVlWYiRh_uiV7-fXx-y8Xd37lkBzIufyOYFaE-hluFvc93wxboofQKrmyrOpArMGshtlXjFpXmyC7yWffFwciIC-IPtEU409O6uLFAXI8yBDtsy6vIEXnaIdzpCvre_AjzXA1GFy9NAi4OeRxWvBCx45IL6IacFuEb5ourFhM3SgjUWKsmllpMYDEmmEGGCXOtWYxiXeQPjvDbvP8I5Nga6O9yhL4HQYiKe_Az4IUL7zt6lBC-MOJWzniiT89T4h76UiAHws_6iOxZ755cx9VNXZduE_A6A&h=ISZm-PBYaEXmewdgcXutP7u3x3d2I0LY9OhfTmfldjc + cache-control: + - no-cache + content-length: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 16a9fa28-1165-492b-93da-c772a919ea30 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/81da3eed-aae8-4d2d-99a0-d670ab164a93 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 2C1DDE5A3235402C96EF02191B207339 Ref B: SG2AA1070302029 Ref C: 2025-12-25T23:41:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --default-outbound-access + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/535a9753-4457-49e4-a81d-1fa8eb555e13?api-version=2024-07-01&t=639023029102490094&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=gPsXCaPz49W5yLxLoKxMplkHwn-I0cC5T1dufvKcQkcH8lpg_TR3AOjdVlWYiRh_uiV7-fXx-y8Xd37lkBzIufyOYFaE-hluFvc93wxboofQKrmyrOpArMGshtlXjFpXmyC7yWffFwciIC-IPtEU409O6uLFAXI8yBDtsy6vIEXnaIdzpCvre_AjzXA1GFy9NAi4OeRxWvBCx45IL6IacFuEb5ourFhM3SgjUWKsmllpMYDEmmEGGCXOtWYxiXeQPjvDbvP8I5Nga6O9yhL4HQYiKe_Az4IUL7zt6lBC-MOJWzniiT89T4h76UiAHws_6iOxZ755cx9VNXZduE_A6A&h=ISZm-PBYaEXmewdgcXutP7u3x3d2I0LY9OhfTmfldjc + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fe87f525-f971-45b6-b690-392c158ad4bb + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/84ad5c3d-f6fb-4cdd-8f6f-ea1faa93112d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B732E1E263D146AFB6A89AC0ADFCF020 Ref B: SG2AA1040519031 Ref C: 2025-12-25T23:41:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -g --vnet-name -n --default-outbound-access + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 + response: + body: + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"8b163378-5790-4b10-9818-5d5b1b469076\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG22DSPVQMDU/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + cache-control: + - no-cache + content-length: + - '694' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:51 GMT + etag: + - W/"8b163378-5790-4b10-9818-5d5b1b469076" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6d216c55-c1fe-45ed-941b-91ad74f31fc4 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/1d86cb93-eccb-4c99-8aa3-ee4d185fe269 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8F0F2AD5E3A0437093D3D0DCC2D333CA Ref B: SG2AA1040516052 Ref C: 2025-12-25T23:41:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_explicit_msi","date":"2025-12-25T23:39:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '354' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 71E132F3B77342BF91EE9D686B901148 Ref B: SG2AA1070301052 Ref C: 2025-12-25T23:41:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '273' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/4478ee42-ee21-40e0-a600-2ade189065c7 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B42C7B2C774042259C6C9BB9DDBE3824 Ref B: SG2AA1040519042 Ref C: 2025-12-25T23:41:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1233' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/2c7a71a4-34f7-4974-8618-de56d79644a7 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B16F7976AB0C4F568D205C7EF504345A Ref B: SG2AA1040519062 Ref C: 2025-12-25T23:41:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea + South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","UAE North","South Africa North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","France Central","South + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","France Central","South + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE + Central","Germany North","Central India","Korea South","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar + Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany + North","Central India","Korea South","Switzerland North","Switzerland West","Japan + West","France South","South Africa West","West India","Canada East","South + India","Germany West Central","Norway East","Norway West","South Africa North","East + Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE + Central","Germany North","Central India","Korea South","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium + Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany + West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel + Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea + Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium + Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '217725' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2669DDE745D9449795F2014B57C95B6A Ref B: SG2AA1070302052 Ref C: 2025-12-25T23:41:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 + response: + body: + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"8b163378-5790-4b10-9818-5d5b1b469076\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG22DSPVQMDU/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + cache-control: + - no-cache + content-length: + - '694' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:57 GMT + etag: + - W/"8b163378-5790-4b10-9818-5d5b1b469076" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1efb3183-b244-4a67-b428-05e72ce2cc01 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/b3414b84-b760-46b5-a20d-c905f90f9704 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EAE9C92647C54E37868916670F519349 Ref B: SG2AA1040513031 Ref C: 2025-12-25T23:41:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27reader%27&api-version=2022-05-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Reader","type":"BuiltInRole","description":"View + all resources, but does not allow you to make any changes.","assignableScopes":["/"],"permissions":[{"actions":["*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:47.8628684Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","type":"Microsoft.Authorization/roleDefinitions","name":"acdd72a7-3385-48ef-bd42-f606fba81ae7"}]}' + headers: + cache-control: + - no-cache + content-length: + - '627' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/bb11ab9b-3a19-4ec2-96c7-968bec28d579 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4A1A162F5BF241B4A10AD75CE2A77360 Ref B: SG2AA1040517034 Ref C: 2025-12-25T23:41:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '273' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/6592f2db-3a0f-4bf7-8c90-fc4c70e0324c + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 62F86CF678D0444FA20EA81950C3B07E Ref B: SG2AA1070303060 Ref C: 2025-12-25T23:41:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1233' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:41:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/e9176fd9-20ab-47a0-9c46-58b71308c2b8 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1EFE25A419984A04968EDD210E2953D4 Ref B: SG2AA1040517025 Ref C: 2025-12-25T23:41:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '273' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:42:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/822b089a-7875-4713-bc01-2b731baf3d66 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: FFBC7F1FE9194C46B54912B77A095C32 Ref B: SG2AA1040519040 Ref C: 2025-12-25T23:41:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": + \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": + \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": + [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1233' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Dec 2025 23:42:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/90371336-1cdd-4093-a291-15adb5e0c775 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73988 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4B599C2CDA954DFA8AC6F0695EDAD568 Ref B: SG2AA1040516054 Ref C: 2025-12-25T23:42:00Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm1NSG", "apiVersion": + "2015-06-15", "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": + "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm1PublicIP", + "location": "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": + "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": + "Microsoft.Network/networkInterfaces", "name": "vm1VMNic", "location": "westus", + "tags": {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vm1NSG", + "Microsoft.Network/publicIpAddresses/vm1PublicIP"], "properties": {"ipConfigurations": + [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod": "Dynamic", + "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, + {"name": "1be6a775-94fd-4365-bf34-5f55c90bf4d8", "type": "Microsoft.Authorization/roleAssignments", + "apiVersion": "2015-07-01", "dependsOn": ["Microsoft.Compute/virtualMachines/vm1"], + "properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "[reference(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1'', + ''2019-07-01'', ''Full'').identity.principalId]", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001"}}, + {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic", + "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": + "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": + null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": + "10", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": + "ubuntuadmin", "linuxConfiguration": {"disablePasswordAuthentication": true, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkOh2iDfHe9rJRL86GH7eUB+T08MZ+PmiPzJobcaOkOwTYfihPwsuKqbNXXB4C075i+jh3tm5pfBebJz5FNiwM+w5zyjFyCrNlaEzvzcQs79zAozhep1KEckN6dd5xjk3rvwmzHh4ZpofK79H1OkJv09kyQkF9y2cNSJgsEtjq1ToUTJXRpPYSxwpvd6CFFCS7GShuMQk/djrN7bVXSoIIPRyLiN73UD574HvnKGS13OYtmCAXrYUuruqrhXCBkpB/Z4IvQEbuR/TsFPCc54ek6Sm0UXZOp/iXYkXFoRZEVHQhUwj9g6NJz4zR/F3ZdgyYQfIHJ+tY+5UaoLwYNn2B", + "path": "/home/ubuntuadmin/.ssh/authorized_keys"}]}}}}, "identity": {"type": + "SystemAssigned,UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1": + {}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '3760' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --assign-identity --role --scope --generate-ssh-keys --admin-username + --subnet --vnet-name --nsg-rule --size User-Agent: - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT @@ -3840,22 +6579,20 @@ interactions: response: body: string: '{"error":{"code":"InvalidTemplateDeployment","message":"The template - deployment ''vm_deploy_8xvwmlvh4hBhQvGiFt8AgMzBBsIP964w'' is not valid according - to the validation procedure. The tracking id is ''044d906f-084b-4eb2-b7d6-4e9dadf4affd''. - See inner errors for details.","details":[{"code":"SkuNotAvailable","message":"The - requested VM size for resource ''Following SKUs have failed for Capacity Restrictions: - Standard_DS1_v2'' is currently not available in location ''westus''. Please - try another size or deploy to a different location or different zone. See - https://aka.ms/azureskunotavailable for details."}]}}' + deployment failed with error: ''Authorization failed for template resource + ''1be6a775-94fd-4365-bf34-5f55c90bf4d8'' of type ''Microsoft.Authorization/roleAssignments''. + The client ''test@example.com'' with object id ''fe51c4e5-d60c-4818-a8d9-80928d053b7b'' + does not have permission to perform action ''Microsoft.Authorization/roleAssignments/write'' + at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/1be6a775-94fd-4365-bf34-5f55c90bf4d8''.''."}}' headers: cache-control: - no-cache content-length: - - '605' + - '595' content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 03:15:14 GMT + - Thu, 25 Dec 2025 23:42:03 GMT expires: - '-1' pragma: @@ -3873,7 +6610,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: F84F05BAEC3B407DBE71B5D9FC7A48C6 Ref B: SG2AA1040513060 Ref C: 2025-12-23T03:15:09Z' + - 'Ref A: CDE4C32AE78F403D98721FFAA2BC8905 Ref B: SG2AA1040516036 Ref C: 2025-12-25T23:42:01Z' status: code: 400 message: Bad Request diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml index afa96195d49..06156c1b5d1 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_msi.yaml @@ -14,12 +14,12 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-25T23:39:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:49 GMT + - Thu, 25 Dec 2025 23:40:11 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 842C3FF9806D46F6900F719D6AC83E27 Ref B: SYD03EDGE1020 Ref C: 2025-12-23T04:57:49Z' + - 'Ref A: 6CB0C7F4AB104A2B9BAB8EBBFF3FC2A6 Ref B: SG2AA1070303060 Ref C: 2025-12-25T23:40:10Z' status: code: 200 message: OK @@ -61,7 +61,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: @@ -77,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:49 GMT + - Thu, 25 Dec 2025 23:40:12 GMT expires: - '-1' pragma: @@ -89,13 +89,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/79ee656e-8fbb-4a7e-b94f-1bc6eccc05e4 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/b305fe44-63b9-44aa-8677-aa8d68a59277 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 10E50034381D455C91AF7539D9BE9EF4 Ref B: SYD03EDGE1319 Ref C: 2025-12-23T04:57:49Z' + - 'Ref A: 20BE8D5F6DF54A7DA0949F15B0207F9F Ref B: SG2AA1070304054 Ref C: 2025-12-25T23:40:12Z' status: code: 200 message: OK @@ -114,7 +114,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:50 GMT + - Thu, 25 Dec 2025 23:40:14 GMT expires: - '-1' pragma: @@ -154,13 +154,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/65bdf19d-0529-44a5-a75a-0d0798648999 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/malaysiasouth/8e2783d9-1e35-40dd-b02b-13a2e0202791 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 83B649B107A0411DB09AA3E99FAF890C Ref B: SYD03EDGE1017 Ref C: 2025-12-23T04:57:50Z' + - 'Ref A: F9F9901DAFF944D699F5F77EE2395066 Ref B: SG2AA1070306029 Ref C: 2025-12-25T23:40:13Z' status: code: 200 message: OK @@ -179,7 +179,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -727,8 +727,8 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -740,7 +740,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central @@ -753,7 +753,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -765,7 +765,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -789,7 +789,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -801,7 +801,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -811,7 +811,7 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -822,12 +822,12 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -839,7 +839,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -851,7 +851,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1684,11 +1684,11 @@ interactions: cache-control: - no-cache content-length: - - '217725' + - '217556' content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:51 GMT + - Thu, 25 Dec 2025 23:40:16 GMT expires: - '-1' pragma: @@ -1702,7 +1702,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B106881D576D48888DE192B88214E8E2 Ref B: SYD03EDGE1418 Ref C: 2025-12-23T04:57:50Z' + - 'Ref A: F043B483CA8C46F99B23AC827CF841DE Ref B: SG2AA1070306034 Ref C: 2025-12-25T23:40:14Z' status: code: 200 message: OK @@ -1721,7 +1721,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --scope --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -1737,7 +1737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:53 GMT + - Thu, 25 Dec 2025 23:40:17 GMT expires: - '-1' pragma: @@ -1751,7 +1751,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 3F85AF31480F4AFEBD0521468F898830 Ref B: SYD03EDGE1715 Ref C: 2025-12-23T04:57:52Z' + - 'Ref A: 34F373845BD94670907421D7D009078C Ref B: SG2AA1040519040 Ref C: 2025-12-25T23:40:17Z' status: code: 404 message: Not Found @@ -1770,12 +1770,12 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-25T23:39:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1784,7 +1784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:53 GMT + - Thu, 25 Dec 2025 23:40:17 GMT expires: - '-1' pragma: @@ -1798,7 +1798,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 22C3055D1AF34DFAA9B004F6D4EAA8AC Ref B: SYD03EDGE1421 Ref C: 2025-12-23T04:57:53Z' + - 'Ref A: DA67985B10D749DD8A19AD8777616D99 Ref B: SG2AA1070302054 Ref C: 2025-12-25T23:40:17Z' status: code: 200 message: OK @@ -1817,7 +1817,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: @@ -1833,7 +1833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:54 GMT + - Thu, 25 Dec 2025 23:40:18 GMT expires: - '-1' pragma: @@ -1845,13 +1845,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/eb61395c-8fc8-44e0-bf96-87dc992c323a + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/b4e16cd4-aabc-429d-ab75-f1ecfaed1bfc x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5490A60FB76F48D2B2B924D44FD63574 Ref B: SYD03EDGE2014 Ref C: 2025-12-23T04:57:54Z' + - 'Ref A: F7000EDD0AB14A3A8DF4769B6B7DC49D Ref B: SG2AA1040519052 Ref C: 2025-12-25T23:40:18Z' status: code: 200 message: OK @@ -1870,7 +1870,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: @@ -1898,7 +1898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:55 GMT + - Thu, 25 Dec 2025 23:40:19 GMT expires: - '-1' pragma: @@ -1910,13 +1910,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/f89effa8-ca10-473e-b3d3-3d72d35c6e88 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/bac5fb81-30f9-43a6-b7af-68683e20e66e x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6D59507FAD9D423AB63ED905DDC10F95 Ref B: SYD03EDGE1314 Ref C: 2025-12-23T04:57:55Z' + - 'Ref A: 5A3F5E4C3B4F4D2C82616642C19FD034 Ref B: SG2AA1070303040 Ref C: 2025-12-25T23:40:19Z' status: code: 200 message: OK @@ -1935,7 +1935,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -2483,8 +2483,8 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2496,7 +2496,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central @@ -2509,7 +2509,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2521,7 +2521,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2545,7 +2545,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2557,7 +2557,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -2567,7 +2567,7 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -2578,12 +2578,12 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2595,7 +2595,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2607,7 +2607,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -3440,11 +3440,11 @@ interactions: cache-control: - no-cache content-length: - - '217725' + - '217556' content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:56 GMT + - Thu, 25 Dec 2025 23:40:20 GMT expires: - '-1' pragma: @@ -3458,7 +3458,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 13907A7648DC408A8DD16F5FF07C107F Ref B: SYD03EDGE2116 Ref C: 2025-12-23T04:57:55Z' + - 'Ref A: E37D09242227419AA26504BE4F46F57A Ref B: SG2AA1070305034 Ref C: 2025-12-25T23:40:19Z' status: code: 200 message: OK @@ -3477,7 +3477,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --subnet --vnet-name --nsg-rule --role --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -3493,7 +3493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:58 GMT + - Thu, 25 Dec 2025 23:40:21 GMT expires: - '-1' pragma: @@ -3507,7 +3507,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: E92EA305ED8F464AA42A5C3788D51C00 Ref B: SYD03EDGE1910 Ref C: 2025-12-23T04:57:57Z' + - 'Ref A: 7EE1CA16DFE84DA393171533696853F4 Ref B: SG2AA1040519034 Ref C: 2025-12-25T23:40:21Z' status: code: 404 message: Not Found @@ -3526,12 +3526,12 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-25T23:39:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3540,7 +3540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:58 GMT + - Thu, 25 Dec 2025 23:40:22 GMT expires: - '-1' pragma: @@ -3554,7 +3554,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1BE2B33C9E2A43FC95C857A40EE0E1C2 Ref B: SYD03EDGE1917 Ref C: 2025-12-23T04:57:58Z' + - 'Ref A: 91F4982E0F6B44859AA8DF7225956722 Ref B: SG2AA1070302062 Ref C: 2025-12-25T23:40:22Z' status: code: 200 message: OK @@ -3573,7 +3573,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: @@ -3589,7 +3589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:59 GMT + - Thu, 25 Dec 2025 23:40:22 GMT expires: - '-1' pragma: @@ -3601,13 +3601,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/b97d1d5b-df26-4101-b4e8-1718775e6abf + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/d49f4ac5-babc-43a5-beef-aafda8cb3931 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C63CCC444C054940969510F0A030315E Ref B: SYD03EDGE1314 Ref C: 2025-12-23T04:57:58Z' + - 'Ref A: C440376A24174525A746B8C9869B481E Ref B: SG2AA1040512034 Ref C: 2025-12-25T23:40:22Z' status: code: 200 message: OK @@ -3626,7 +3626,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: @@ -3654,7 +3654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:57:59 GMT + - Thu, 25 Dec 2025 23:40:22 GMT expires: - '-1' pragma: @@ -3666,13 +3666,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/debba7ce-c6f6-431a-9813-a871949c506b + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/abfafae0-b081-40ab-aa6c-52a573f54b6d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: EE368CBB620D46129C17BD5E410CB724 Ref B: SYD03EDGE1410 Ref C: 2025-12-23T04:57:59Z' + - 'Ref A: 36857B5FC1E5412EB6D529517A37F59F Ref B: SG2AA1040517011 Ref C: 2025-12-25T23:40:23Z' status: code: 200 message: OK @@ -3691,7 +3691,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -4239,8 +4239,8 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -4252,7 +4252,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central @@ -4265,7 +4265,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -4277,7 +4277,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -4301,7 +4301,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -4313,7 +4313,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -4323,7 +4323,7 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -4334,12 +4334,12 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -4351,7 +4351,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -4363,7 +4363,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5196,11 +5196,11 @@ interactions: cache-control: - no-cache content-length: - - '217725' + - '217556' content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:02 GMT + - Thu, 25 Dec 2025 23:40:24 GMT expires: - '-1' pragma: @@ -5214,7 +5214,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1EBEFB889D73438FBB11332FE5E672D8 Ref B: SYD03EDGE0708 Ref C: 2025-12-23T04:58:00Z' + - 'Ref A: 4B76B9E94D924B009B2B09CAB70B2563 Ref B: SG2AA1070304029 Ref C: 2025-12-25T23:40:23Z' status: code: 200 message: OK @@ -5233,7 +5233,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -5249,7 +5249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:03 GMT + - Thu, 25 Dec 2025 23:40:24 GMT expires: - '-1' pragma: @@ -5263,7 +5263,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 7F7876770A2B4255B5482F4C81BF7D3B Ref B: SYD03EDGE2019 Ref C: 2025-12-23T04:58:03Z' + - 'Ref A: 0E80A387FDB542899E71219D2F18CA65 Ref B: SG2AA1070303060 Ref C: 2025-12-25T23:40:25Z' status: code: 404 message: Not Found @@ -5282,14 +5282,14 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-05-01-preview response: body: string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action","Microsoft.Purview/consents/write","Microsoft.Purview/consents/delete","Microsoft.Resources/deploymentStacks/manageDenySetting/action","Microsoft.Subscription/cancel/action","Microsoft.Subscription/enable/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2024-11-21T20:29:46.0498936Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action","Microsoft.Purview/consents/write","Microsoft.Purview/consents/delete","Microsoft.Resources/deploymentStacks/manageDenySetting/action","Microsoft.Subscription/cancel/action","Microsoft.Subscription/enable/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2024-11-20T20:16:17.1646587Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' headers: cache-control: - no-cache @@ -5298,7 +5298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:03 GMT + - Thu, 25 Dec 2025 23:40:26 GMT expires: - '-1' pragma: @@ -5310,11 +5310,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/a80c9760-c6a2-4631-b445-b2f108a8b6d1 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/c565c33f-9492-4b7d-bcee-69e3ffa2bb8e x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A8C75A25EF5E4495B72CFE5CF721236B Ref B: SYD03EDGE1907 Ref C: 2025-12-23T04:58:03Z' + - 'Ref A: DC1900FBD5CC4978960720078058A1AB Ref B: SG2AA1040516052 Ref C: 2025-12-25T23:40:25Z' status: code: 200 message: OK @@ -5333,7 +5333,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: @@ -5349,7 +5349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:04 GMT + - Thu, 25 Dec 2025 23:40:27 GMT expires: - '-1' pragma: @@ -5361,13 +5361,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiacentral/0131d4ce-5249-4e46-8660-fe79749b84f8 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e91b8d6d-4878-4bc9-8db9-d48660b8bc3d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 62524FAA4CED4403B48288C7D630FFAA Ref B: SYD03EDGE1716 Ref C: 2025-12-23T04:58:03Z' + - 'Ref A: 3BA78F8FEDD0467ABE9567494F165D7E Ref B: SG2AA1040517054 Ref C: 2025-12-25T23:40:26Z' status: code: 200 message: OK @@ -5386,7 +5386,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: @@ -5414,7 +5414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:05 GMT + - Thu, 25 Dec 2025 23:40:27 GMT expires: - '-1' pragma: @@ -5426,13 +5426,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/e9613616-0733-43d4-9b92-a89798e46971 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/5efd00b4-e156-43da-9d48-9ad7bfcad4cb x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6A5E0E2C3DDF436FA907155EB626E7FE Ref B: SYD03EDGE1409 Ref C: 2025-12-23T04:58:04Z' + - 'Ref A: B0F1963E476243B08E0019BBBE07CA5F Ref B: SG2AA1070306025 Ref C: 2025-12-25T23:40:28Z' status: code: 200 message: OK @@ -5451,7 +5451,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 response: @@ -5467,7 +5467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:06 GMT + - Thu, 25 Dec 2025 23:40:29 GMT expires: - '-1' pragma: @@ -5479,13 +5479,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/1ada0217-0d80-4529-bbf6-ae9296e0e45c + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/74e9af3f-5b48-42b4-b7b7-71cd0ce17a87 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: ABD8EBD9167E42D89E4C309FD881673A Ref B: SYD03EDGE0811 Ref C: 2025-12-23T04:58:05Z' + - 'Ref A: E57A91680D6A4D9094342FFFDDA55109 Ref B: SG2AA1040516025 Ref C: 2025-12-25T23:40:28Z' status: code: 200 message: OK @@ -5504,7 +5504,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 response: @@ -5532,7 +5532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:07 GMT + - Thu, 25 Dec 2025 23:40:29 GMT expires: - '-1' pragma: @@ -5544,13 +5544,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/75338ecf-603a-42e6-9718-69b7d63c061d + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/cb0bc7fa-e5e7-4e40-a11b-f5eb9a5a487c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: ADEB3F819D3146639F1D2D4BF259ACB4 Ref B: SYD03EDGE2113 Ref C: 2025-12-23T04:58:06Z' + - 'Ref A: A120055BB7834DE68B80AC6AC7C1103D Ref B: SG2AA1040512060 Ref C: 2025-12-25T23:40:29Z' status: code: 200 message: OK @@ -5569,7 +5569,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: @@ -6117,8 +6117,8 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -6130,7 +6130,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central @@ -6143,7 +6143,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -6155,7 +6155,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -6179,7 +6179,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -6191,7 +6191,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -6201,7 +6201,7 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -6212,12 +6212,12 @@ interactions: North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + East","West US 3"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -6229,7 +6229,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -6241,7 +6241,7 @@ interactions: East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile Central","New Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + Central"],"apiVersions":["2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7074,11 +7074,11 @@ interactions: cache-control: - no-cache content-length: - - '217725' + - '217556' content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:07 GMT + - Thu, 25 Dec 2025 23:40:31 GMT expires: - '-1' pragma: @@ -7090,9 +7090,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '3748' x-msedge-ref: - - 'Ref A: AF47340CC911463EA8BB3E658F611838 Ref B: SYD03EDGE1713 Ref C: 2025-12-23T04:58:07Z' + - 'Ref A: EFF10D63F2E643029301DE3DB7D07870 Ref B: SG2AA1070305023 Ref C: 2025-12-25T23:40:30Z' status: code: 200 message: OK @@ -7111,7 +7111,7 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2025-05-01 response: @@ -7127,7 +7127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:09 GMT + - Thu, 25 Dec 2025 23:40:32 GMT expires: - '-1' pragma: @@ -7141,7 +7141,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: B53A7F8E9A4F409795E39CC30AC74AC3 Ref B: SYD03EDGE2110 Ref C: 2025-12-23T04:58:08Z' + - 'Ref A: CFADB40109BC40059A328D98CF20B475 Ref B: SG2AA1070304060 Ref C: 2025-12-25T23:40:31Z' status: code: 404 message: Not Found @@ -7164,7 +7164,7 @@ interactions: "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, - {"name": "99282391-6ed2-4137-80a1-2c28e6ed4418", "type": "Microsoft.Authorization/roleAssignments", + {"name": "acc49c8c-3730-44e7-95d8-f6d27239fb19", "type": "Microsoft.Authorization/roleAssignments", "apiVersion": "2015-07-01", "dependsOn": ["Microsoft.Compute/virtualMachines/vm1"], "properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", "principalId": "[reference(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1'', @@ -7197,23 +7197,26 @@ interactions: - -g -n --image --assign-identity --admin-username --admin-password --scope --role --subnet --vnet-name --nsg-rule --size User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","name":"vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5259625001610856610","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T04:58:09.9016021Z","duration":"PT0.000972S","correlationId":"68b1c3e6-9cdb-492c-be5b-5660e9161e6d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/99282391-6ed2-4137-80a1-2c28e6ed4418","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"99282391-6ed2-4137-80a1-2c28e6ed4418"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"error":{"code":"InvalidTemplateDeployment","message":"The template + deployment failed with error: ''Authorization failed for template resource + ''acc49c8c-3730-44e7-95d8-f6d27239fb19'' of type ''Microsoft.Authorization/roleAssignments''. + The client ''test@example.com'' with object id ''fe51c4e5-d60c-4818-a8d9-80928d053b7b'' + does not have permission to perform action ''Microsoft.Authorization/roleAssignments/write'' + at scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/acc49c8c-3730-44e7-95d8-f6d27239fb19''.''."}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH/operationStatuses/08584351409955657085?api-version=2024-11-01&t=639020626905735029&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=wKq54kU5k1SdavqwW4kQ914miOIe_uKI57MTC73eVIqA0LXl_Zr11D5ZGDjA2h3TcWDXTupfXReqAgjzXoCQJrYRUu3fiTWGcTtmxniYa6yy2KLejB5n15pQv3SJ0tB6P9PgvjrMPTc0TImJy6sMsT0Ud5m7_WVRIt8Fqlbb4bsaZ6jB6yRRKb0lxzr1XLc3RubWDoLGAe8_qoiMRG-lodBhcA-Rb6igaGi6piXvxWuz3QbhlDd26ctgjnlNTGQq4QvKRiMMEbuIsyTaU-JDVSIyO0xOClBfWTV7eJ3aeXhTCKwVdIAKp1nI8DfWDN9eQpKCe-roryiRaxsS95hC2A&h=Q1dMAMZSb2YSNrFhFXYB6eheG7ysWh_p0_-ieQVPqlc cache-control: - no-cache content-length: - - '3282' + - '600' content-type: - application/json; charset=utf-8 date: - - Tue, 23 Dec 2025 04:58:10 GMT + - Thu, 25 Dec 2025 23:40:34 GMT expires: - '-1' pragma: @@ -7224,6779 +7227,15 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-deployment-engine-version: - - 1.560.0 + x-ms-failure-cause: + - gateway x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: D7A11FA284B6490CB7D1634DC7B43806 Ref B: SYD03EDGE2019 Ref C: 2025-12-23T04:58:09Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409955657085?api-version=2024-11-01&t=639020626905735029&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=wKq54kU5k1SdavqwW4kQ914miOIe_uKI57MTC73eVIqA0LXl_Zr11D5ZGDjA2h3TcWDXTupfXReqAgjzXoCQJrYRUu3fiTWGcTtmxniYa6yy2KLejB5n15pQv3SJ0tB6P9PgvjrMPTc0TImJy6sMsT0Ud5m7_WVRIt8Fqlbb4bsaZ6jB6yRRKb0lxzr1XLc3RubWDoLGAe8_qoiMRG-lodBhcA-Rb6igaGi6piXvxWuz3QbhlDd26ctgjnlNTGQq4QvKRiMMEbuIsyTaU-JDVSIyO0xOClBfWTV7eJ3aeXhTCKwVdIAKp1nI8DfWDN9eQpKCe-roryiRaxsS95hC2A&h=Q1dMAMZSb2YSNrFhFXYB6eheG7ysWh_p0_-ieQVPqlc - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9DE3DBD2DCFD4C11BE8A66AAF971C8F3 Ref B: SYD03EDGE1311 Ref C: 2025-12-23T04:58:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409955657085?api-version=2024-11-01&t=639020626905735029&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=wKq54kU5k1SdavqwW4kQ914miOIe_uKI57MTC73eVIqA0LXl_Zr11D5ZGDjA2h3TcWDXTupfXReqAgjzXoCQJrYRUu3fiTWGcTtmxniYa6yy2KLejB5n15pQv3SJ0tB6P9PgvjrMPTc0TImJy6sMsT0Ud5m7_WVRIt8Fqlbb4bsaZ6jB6yRRKb0lxzr1XLc3RubWDoLGAe8_qoiMRG-lodBhcA-Rb6igaGi6piXvxWuz3QbhlDd26ctgjnlNTGQq4QvKRiMMEbuIsyTaU-JDVSIyO0xOClBfWTV7eJ3aeXhTCKwVdIAKp1nI8DfWDN9eQpKCe-roryiRaxsS95hC2A&h=Q1dMAMZSb2YSNrFhFXYB6eheG7ysWh_p0_-ieQVPqlc - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 140694C714B84627B0F0A5B31023C0AA Ref B: SYD03EDGE1313 Ref C: 2025-12-23T04:58:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","name":"vm_deploy_DkSplMz8n1f85idMenTMJxQFWxwjsUzH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5259625001610856610","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T04:58:31.2176684Z","duration":"PT21.3160663S","correlationId":"68b1c3e6-9cdb-492c-be5b-5660e9161e6d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[null]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/99282391-6ed2-4137-80a1-2c28e6ed4418","resourceType":"Microsoft.Authorization/roleAssignments","resourceName":"99282391-6ed2-4137-80a1-2c28e6ed4418"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Authorization/roleAssignments/99282391-6ed2-4137-80a1-2c28e6ed4418"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '4261' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8D38875D03724049952807054B478F2E Ref B: SYD03EDGE1119 Ref C: 2025-12-23T04:58:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"92e1fea0-9cb8-4f18-8288-da7a11a56894\",\r\n \"tenantId\": - \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"f55c51fd-386c-4cc1-befc-3cc4ae8f08e2\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_disk1_92758a46067d4334842e0b6e74dee6c0\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm1_disk1_92758a46067d4334842e0b6e74dee6c0\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": - \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2025-12-23T04:58:37+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_92758a46067d4334842e0b6e74dee6c0\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-12-23T04:58:22.0340359+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-12-23T04:58:28.6747153+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T04:58:20.0496344+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3400' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 623D0F11D40C4C8E8A5DD6F699CB5526 Ref B: SYD03EDGE0719 Ref C: 2025-12-23T04:58:42Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01 - response: - body: - string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"1f8a4213-ac26-4e76-8615-cfd4893bf45a\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"09a6dbc7-ada8-4430-a454-7861cd960746","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"1f8a4213-ac26-4e76-8615-cfd4893bf45a\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ckjwczbs4vrupor32xhgghlduh.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-37-07-B3","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' - headers: - cache-control: - - no-cache - content-length: - - '1958' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:43 GMT - etag: - - W/"1f8a4213-ac26-4e76-8615-cfd4893bf45a" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a73cda53-f3e9-487d-a444-726a60c2c625 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6A9C2CBA69E142F2A0B1DCF12FD1CDB4 Ref B: SYD03EDGE2019 Ref C: 2025-12-23T04:58:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --admin-username --admin-password --scope - --role --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01 - response: - body: - string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"44e01777-1c22-4e7a-8a97-9818dc5a1ca1\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0d56aea7-af7c-41ba-a1d2-244a31d43aec","ipAddress":"172.184.242.35","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' - headers: - cache-control: - - no-cache - content-length: - - '782' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:43 GMT - etag: - - W/"44e01777-1c22-4e7a-8a97-9818dc5a1ca1" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 98095dcc-72fb-4a64-9a35-3ecfd569ff09 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A09B1536F09C41ED9619B1DCBE837C08 Ref B: SYD03EDGE1906 Ref C: 2025-12-23T04:58:44Z' + - 'Ref A: C0B29AE5343D400A858A97047BD4EA86 Ref B: SG2AA1070305023 Ref C: 2025-12-25T23:40:32Z' status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"2d865f8a-8632-417e-b486-d29535abc0a3\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:46 GMT - etag: - - W/"2d865f8a-8632-417e-b486-d29535abc0a3" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c0fef051-49ba-4425-a7cb-8aa60ac7828d - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/92fa721b-1292-4f02-bfb4-5adef2c796c8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 65FB4494705A4EF68AE063801EC57B96 Ref B: SYD03EDGE1718 Ref C: 2025-12-23T04:58:46Z' - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", - "name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": - false, "delegations": [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": - "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - Content-Length: - - '429' - Content-Type: - - application/json - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f7131616-5006-4421-b336-6c6feae6d21c\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6b18965-db27-4961-8f71-b04840b4df05?api-version=2024-07-01&t=639020627270780890&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=rE58QexEc7YUczr4mU6GTcxXgRch6nc40NxJiPmnl1h5ssteFaTGHn0zsoCO3lLtL-jSH1h6JSc418DBd6e4n9xsY6YCmOosj4vaB2wYdf5BJt3teDmMpPn_AY5EEAb-dEiENFS6GMOfdhAd4tUspfRTiBcD9bVZrnQWJwVy40PtSGKF3ItIEsL7xeJqDvc795JrTjsTejV4xuTCEw7B1ugjd6JvuMeqXlOoS6D30scY4Lo4H8bbchIUbpAO-7tJjZG0GlXmfqH_bBfwF5vJ1QijhOLjAxNVybsOxLo83qaOlxA_HJsM1d-7sZJKeeFyvm3PQjPVEvxWxoS829QooA&h=Smusry2W0oGmCroRIipcJqOirhEPyLiUwASXd0sWbqs - cache-control: - - no-cache - content-length: - - '699' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b24fc11d-e702-44b5-8d80-8ce7913561d0 - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/2e867ea4-8088-4cec-948c-b8e54f91a04e - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: B4D76A4CBB33419896D230CE383B3A81 Ref B: SYD03EDGE1407 Ref C: 2025-12-23T04:58:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6b18965-db27-4961-8f71-b04840b4df05?api-version=2024-07-01&t=639020627270780890&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=rE58QexEc7YUczr4mU6GTcxXgRch6nc40NxJiPmnl1h5ssteFaTGHn0zsoCO3lLtL-jSH1h6JSc418DBd6e4n9xsY6YCmOosj4vaB2wYdf5BJt3teDmMpPn_AY5EEAb-dEiENFS6GMOfdhAd4tUspfRTiBcD9bVZrnQWJwVy40PtSGKF3ItIEsL7xeJqDvc795JrTjsTejV4xuTCEw7B1ugjd6JvuMeqXlOoS6D30scY4Lo4H8bbchIUbpAO-7tJjZG0GlXmfqH_bBfwF5vJ1QijhOLjAxNVybsOxLo83qaOlxA_HJsM1d-7sZJKeeFyvm3PQjPVEvxWxoS829QooA&h=Smusry2W0oGmCroRIipcJqOirhEPyLiUwASXd0sWbqs - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 9875061d-69e3-4392-ad8b-fd1aa9b8780e - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/40b141eb-9100-4af2-8ca8-2ba2683eb5a3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 73F975B1F3CB4E81BDD3B568B0FD9EC8 Ref B: SYD03EDGE1312 Ref C: 2025-12-23T04:58:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g --vnet-name -n --default-outbound-access - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f4ac5a0c-02d6-442f-aeec-e76658673097\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:48 GMT - etag: - - W/"f4ac5a0c-02d6-442f-aeec-e76658673097" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a8b3417a-105c-4b1e-a276-e8950e86486c - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/219334d9-35bd-498a-9d66-a0e74cdace02 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 06446B369166446CBE41A9DC6DFA3745 Ref B: SYD03EDGE1921 Ref C: 2025-12-23T04:58:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '355' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 01DEC3CC4BFF4461A9C0F479C2C55970 Ref B: SYD03EDGE2015 Ref C: 2025-12-23T04:58:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.4 - method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json - response: - body: - string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n - \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": - {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"Debian11\": - {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n - \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": - \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"SuseSles15SP5\": {\n \"publisher\": \"SUSE\",\n - \ \"offer\": \"sles-15-sp5\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": - \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Ubuntu2404\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"sku\": - \"server\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"sku\": - \"ubuntu-pro\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-datacenter-g2\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Win2019Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2019-datacenter-gensecond\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2016-datacenter-gensecond\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}\n" - headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' - cache-control: - - max-age=300 - connection: - - keep-alive - content-length: - - '3790' - content-security-policy: - - default-src 'none'; style-src 'unsafe-inline'; sandbox - content-type: - - text/plain; charset=utf-8 - cross-origin-resource-policy: - - cross-origin - date: - - Tue, 23 Dec 2025 04:58:50 GMT - etag: - - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67" - expires: - - Tue, 23 Dec 2025 05:03:50 GMT - source-age: - - '0' - strict-transport-security: - - max-age=31536000 - vary: - - Authorization,Accept-Encoding - via: - - 1.1 varnish - x-cache: - - MISS - x-cache-hits: - - '0' - x-content-type-options: - - nosniff - x-fastly-request-id: - - 8c8761be13d4eec7a52339a690496deb9d1c7db1 - x-frame-options: - - deny - x-github-request-id: - - 6FEC:25554F:93192:B3230:694A218A - x-served-by: - - cache-wsi-ysbk1060080-WSI - x-timer: - - S1766465930.747227,VS0,VE832 - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiasoutheast/011df34b-b73c-4f44-8404-2bdbfa223873 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8DCE70D1AD5B4B25A016402D7F195A18 Ref B: SYD03EDGE1409 Ref C: 2025-12-23T04:58:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.4529.251205?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n - \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": - false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": - \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": - \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n - \ },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n - \ \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-12-09T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1232' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/53fb090e-555d-4284-bb5b-baf9900fa4d1 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DB3108C086BD41E490153742EF9BA35A Ref B: SYD03EDGE1907 Ref C: 2025-12-23T04:58:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","West - US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy North","Israel - Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar - Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West - Europe","South Central US","Australia East","Australia Central","Australia - Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","West Central US","Central US","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden - Central","UAE North","Australia Central 2","UAE Central","Germany North","Central - India","Korea South","Switzerland North","Switzerland West","Japan West","France - South","South Africa West","West India","Canada East","South India","Germany - West Central","Norway East","Norway West","South Africa North","East Asia","Southeast - Asia","Korea Central","Brazil South","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '217725' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C506922B4ACA47919A365387278DA44A Ref B: SYD03EDGE1416 Ref C: 2025-12-23T04:58:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f4ac5a0c-02d6-442f-aeec-e76658673097\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:54 GMT - etag: - - W/"f4ac5a0c-02d6-442f-aeec-e76658673097" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - fc7152f5-192c-4d37-9cef-923c1d0a6e63 - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/c0d13d60-2ca4-4cbc-b7eb-e909b02ecde5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CFFE47F5C99243DDBB9FA22C84416E1B Ref B: SYD03EDGE0716 Ref C: 2025-12-23T04:58:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27reader%27&api-version=2022-05-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Reader","type":"BuiltInRole","description":"View - all resources, but does not allow you to make any changes.","assignableScopes":["/"],"permissions":[{"actions":["*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:47.8628684Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","type":"Microsoft.Authorization/roleDefinitions","name":"acdd72a7-3385-48ef-bd42-f606fba81ae7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '627' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/4781c6d6-7679-49f7-82bb-d4aa87a48797 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CE7FE2028B774081BE2A1218625533CB Ref B: SYD03EDGE1720 Ref C: 2025-12-23T04:58:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.4 - method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json - response: - body: - string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n - \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": - {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"Debian11\": - {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n - \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": - \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"SuseSles15SP5\": {\n \"publisher\": \"SUSE\",\n - \ \"offer\": \"sles-15-sp5\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": - \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Ubuntu2404\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"sku\": - \"server\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"sku\": - \"ubuntu-pro\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-datacenter-g2\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Win2019Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2019-datacenter-gensecond\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2016-datacenter-gensecond\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}\n" - headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' - cache-control: - - max-age=300 - connection: - - keep-alive - content-length: - - '3790' - content-security-policy: - - default-src 'none'; style-src 'unsafe-inline'; sandbox - content-type: - - text/plain; charset=utf-8 - cross-origin-resource-policy: - - cross-origin - date: - - Tue, 23 Dec 2025 04:58:54 GMT - etag: - - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67" - expires: - - Tue, 23 Dec 2025 05:03:54 GMT - source-age: - - '4' - strict-transport-security: - - max-age=31536000 - vary: - - Authorization,Accept-Encoding - via: - - 1.1 varnish - x-cache: - - HIT - x-cache-hits: - - '1' - x-content-type-options: - - nosniff - x-fastly-request-id: - - 0336387608005d1269c36c6584b4a9de6f4a5b5c - x-frame-options: - - deny - x-github-request-id: - - 6FEC:25554F:93192:B3230:694A218A - x-served-by: - - cache-wsi-ysbk1060034-WSI - x-timer: - - S1766465935.611932,VS0,VE1 - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/4f180d6d-f7a6-4a22-bc8b-d727e9ed3d81 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B24B8B92B6DB4F5F91B2011D2CC3D499 Ref B: SYD03EDGE0805 Ref C: 2025-12-23T04:58:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.4529.251205?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n - \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": - false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": - \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": - \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n - \ },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n - \ \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-12-09T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1232' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/42c2a947-eeed-4861-96db-f30cb2cc7c67 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3F7F9681523F4573831019DE1ACC35C1 Ref B: SYD03EDGE1908 Ref C: 2025-12-23T04:58:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/524c261e-f466-4b3d-9a4e-5ec90287fecd - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1BF0D182CAB84C4CAD48729830449767 Ref B: SYD03EDGE1715 Ref C: 2025-12-23T04:58:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.4529.251205?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n - \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": - false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": - \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": - \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n - \ },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n - \ \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": - 127\r\n },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-12-09T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"20348.4529.251205\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.4529.251205\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1232' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:58:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/3dae731c-c04a-4ac8-a895-3d58f42733df - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 599E0ED757AB4323A0B2FFB2E8CECA83 Ref B: SYD03EDGE0808 Ref C: 2025-12-23T04:58:55Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", - "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": - [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm2NSG", "apiVersion": - "2015-06-15", "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": - "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm2PublicIP", - "location": "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": - "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": - "Microsoft.Network/networkInterfaces", "name": "vm2VMNic", "location": "westus", - "tags": {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vm2NSG", - "Microsoft.Network/publicIpAddresses/vm2PublicIP"], "properties": {"ipConfigurations": - [{"name": "ipconfigvm2", "properties": {"privateIPAllocationMethod": "Dynamic", - "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"}}}, - {"name": "vm1/Microsoft.Authorization/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24", - "type": "Microsoft.Compute/virtualMachines/providers/roleAssignments", "apiVersion": - "2015-07-01", "dependsOn": ["Microsoft.Compute/virtualMachines/vm2"], "properties": - {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "[reference(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2'', - ''2019-07-01'', ''Full'').identity.principalId]", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1"}}, - {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm2", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm2VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic", - "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "MicrosoftWindowsServer", "offer": "WindowsServer", - "sku": "2022-datacenter-g2", "version": "latest"}}, "osProfile": {"computerName": - "vm2", "adminUsername": "admin123", "adminPassword": "[parameters(''adminPassword'')]"}, - "securityProfile": {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": - true, "vTpmEnabled": true}}}, "identity": {"type": "SystemAssigned"}}], "outputs": - {}}, "parameters": {"adminPassword": {"value": "PasswordPassword1!"}}, "mode": - "incremental"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Length: - - '3501' - Content-Type: - - application/json - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","name":"vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"996190911651546349","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T04:59:00.5815985Z","duration":"PT0.0003805S","correlationId":"d2ec5ddf-2584-45e2-8ef9-ebeb1219f364","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/providers/roleAssignments","locations":[null]},{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24","resourceType":"Microsoft.Compute/virtualMachines/providers/roleAssignments","resourceName":"vm1/Microsoft.Authorization/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI - cache-control: - - no-cache - content-length: - - '3066' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:59:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-deployment-engine-version: - - 1.560.0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: F130B740DE9C452FB7611431C1C3603F Ref B: SYD03EDGE1007 Ref C: 2025-12-23T04:58:56Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:59:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7D4072344E8E45ABA171D5055CB54D8A Ref B: SYD03EDGE0808 Ref C: 2025-12-23T04:59:04Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 04:59:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4437F2F5809049D5B98BC47E9F2DDAF1 Ref B: SYD03EDGE1922 Ref C: 2025-12-23T04:59:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:00:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F630E6AD908B40AB9F81A24DFB6C2706 Ref B: SYD03EDGE1917 Ref C: 2025-12-23T05:00:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:00:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0C9ED7140CD94B4E91C01021D75CA68B Ref B: SYD03EDGE0815 Ref C: 2025-12-23T05:00:36Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351409448882529?api-version=2024-11-01&t=639020627437690928&c=MIIIpTCCBo2gAwIBAgITFgIfhVKsWXM3Ygh08wABAh-FUjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUxMDIyMTIwOTI4WhcNMjYwNDIwMTIwOTI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCV2BIPUGGkYMoxr_bXBj5ZkyyE9q_v21X4b91s6Rv-hABQloLIeEvPMezEfAUDjb9NTZKZkwxaCzGCvroQFalzludoDJWeKdIkCMThPTZNeLjNogjfwUQ8_ETvPbJbyl7VKMkEWUFUM8CxjgPVapaVaqhnIZHxNvDEtADT_w8DOUmoZdPS0kBYGfQUPKrCQ6g16eA8MGAkI3g4qhhB1FwZqDFxOeqHsXVn9POMMonuggA9RMRqS9XKeXpCZ4qE6vUN1ztSeYGxqbasmqAWodUl2rA6DaKQAWsIT5K-gFjika_lvYuyD07eweZ1YsupseAPlBF3y8H1ECvgVuqlWo0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBSB5hCasPW3N2rHKykhmCYGlK4_EzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBADD1KiF9c0NCmTsnfBE-z4sYsAGmy3SGxldEQqU4Vw7lusvDg8VYJdpIFQEKJBaDlgrBzE-jQWZtNoZL4K42Wl_q2w1N9RDoV0kHM3_FQapzv4d9CSXp3mDMK-NcKi55fngSZ360o6Iff9CyB-03aaeQv2KhdgnlSTA8vY5Jc3mNE2-9eBMhBeCs2bF96ZvT8jrWqoVRjggsdZZE58-tRJtnuGg7ZIFJT98Prz0kprAoZyjSyTpeHdFujPqH7U37b0SPw8ORSn5qEMW0DSd926RHI25DX57Zij7cqANzb-pfOoVOayqi2KYdkWM7eqHrF__0uR2YHKjq_r9BRrKlu9W0iwfDmR3ONaib0Xp1o9bvasDkCRaEwzHg4C-VSjA7XUaZHRJt-Lcx4hB5agh4eXiseo_cX6oTZ6UOIC7ASRD1udW3rBsDEAIlca2G547on6JZl6wATxjKeKFMbOa_-AyPap-khHwj-GpLeSLgiHoStY9eGpTt640IoB7rjqJCS2Bo9y0PgilD5IXEqUjPpBDdts7ED9JDrTsw-Dz1PUGGTsFScTYZ7z21UhU5EWKrZ13h6C2FqD9EynUQo6NV20kuW7lY5plj_LGCniz5Or1HTbuob4-hDioSaoV6PVKAsJmyScJua6SuMKtRILlw752lLoL6sk95VCN02VHSAtqs&s=pUEgYVKoj7j6xX7TBn_VJt6JVkDFRAsBTv6bYuSSBeyumzk6CSozUquWZjwD1rlVy3rhGFGL5CbQErGxvWL3JgWXq1UHIRsT9SUPyedllKmkEXA1YAEZYsqK_5vLrj1L3w-J3Q_MAOMufCOqd6qtbtlCWSWdHSu-9A6kqjmKcZq2WQpsvZEvOlUyhr3orJ-YZcYSl3hZS-gpkLnF8gv_AuvGJZd-WnYtI1YGvHyoOB71RWfUYmmnO6VBj1PTLIHGCwcZ-31hNW3xIHsDBeZcNIRryinkPvHd7QB-A87gYJxpQwQJjFqJznVGWACTUVY6tFkzpnEN0Id1fufnSZSa4Q&h=2AVXh6hyL6htSPgRCSZp5xskngDtX_bjjQynD6jzYoI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4DCC68B75CAD4986B06AD102E56CEAF6 Ref B: SYD03EDGE1409 Ref C: 2025-12-23T05:01:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","name":"vm_deploy_7DdStDbbIemwM50O5yWGKaiufVR6o63U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"996190911651546349","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:00:53.0947769Z","duration":"PT1M52.5131784S","correlationId":"d2ec5ddf-2584-45e2-8ef9-ebeb1219f364","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines/providers/roleAssignments","locations":[null]},{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2","apiVersion":"2019-07-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24","resourceType":"Microsoft.Compute/virtualMachines/providers/roleAssignments","resourceName":"vm1/Microsoft.Authorization/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/cc9bf8ee-daf6-4fd2-b619-e0926aa91a24"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '3946' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5CAB0FA307B449D2B2A22A4EC1122059 Ref B: SYD03EDGE0706 Ref C: 2025-12-23T05:01:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"d39b107d-eb54-4144-898c-d4349519b8de\",\r\n \"tenantId\": - \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"f8f7d96c-b5b9-46fa-aa91-bb22b1b3f153\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": - \"2022-datacenter-g2\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"20348.4529.251205\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"vm2_OsDisk_1_1c7b7145eaf84296ad70cecc3e4aa34f\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_1c7b7145eaf84296ad70cecc3e4aa34f\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": - \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\",\r\n - \ \"adminUsername\": \"admin123\",\r\n \"windowsConfiguration\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"securityProfile\": - {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n - \ \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n - \ \"displayStatus\": \"Not Ready\",\r\n \"message\": - \"VM status blob is found but not yet populated.\",\r\n \"time\": - \"2025-12-23T05:01:09+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm2_OsDisk_1_1c7b7145eaf84296ad70cecc3e4aa34f\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-12-23T04:59:20.0660747+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-12-23T05:00:45.8328514+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T04:59:17.9253641+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3616' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23989,Microsoft.Compute/LowCostGetResource;31 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8824DBBE908E4348AF9D571627B5AA2E Ref B: SYD03EDGE0919 Ref C: 2025-12-23T05:01:09Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2022-01-01 - response: - body: - string: '{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"3ec0e768-352a-4c2c-9a1a-84d2bf1e63d5\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"64784a71-7ce1-4150-9a87-9366f2068ef8","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"3ec0e768-352a-4c2c-9a1a-84d2bf1e63d5\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ckjwczbs4vrupor32xhgghlduh.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-09-F9-00","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm2"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' - headers: - cache-control: - - no-cache - content-length: - - '1958' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:09 GMT - etag: - - W/"3ec0e768-352a-4c2c-9a1a-84d2bf1e63d5" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 16bc58f8-a619-4b32-a7aa-6203a5baa5ab - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 53556223D4944F468B55A45384B186E8 Ref B: SYD03EDGE2014 Ref C: 2025-12-23T05:01:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --assign-identity --scope --role --admin-username --admin-password - --subnet --vnet-name --nsg-rule --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2022-01-01 - response: - body: - string: '{"name":"vm2PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","etag":"W/\"804c184e-1567-44b4-8556-ccf65892fd5a\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"11fb8568-e217-4bc3-a8f3-ae29aacd0fc3","ipAddress":"52.159.145.119","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' - headers: - cache-control: - - no-cache - content-length: - - '782' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:09 GMT - etag: - - W/"804c184e-1567-44b4-8556-ccf65892fd5a" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 0d6ef1ac-339d-4626-9f7a-01a9e3da06f3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C01A39D90BC94EB4A93D9849DF294AE9 Ref B: SYD03EDGE1906 Ref C: 2025-12-23T05:01:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001","name":"cli_test_vm_msi000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_msi","date":"2025-12-23T04:57:42Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '355' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6912319D54254F149D009EA387A6208C Ref B: SYD03EDGE1914 Ref C: 2025-12-23T05:01:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '273' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/35855287-c7b5-4d8f-801a-ac27e0a07963 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 117D2241D7294E33B9ED8866A7EEAD34 Ref B: SYD03EDGE2017 Ref C: 2025-12-23T05:01:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": - \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": - \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": - [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1233' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/b5d2d545-84a9-405e-8456-d8413bb73d1a - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73981 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F9582001AFCA4A34885772350460A871 Ref B: SYD03EDGE1011 Ref C: 2025-12-23T05:01:11Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","Switzerland West","France South","Norway West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Austria East","Chile Central","Belgium Central","Korea - South","Poland Central","France South","Norway West","Switzerland West"],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","West - US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy North","Israel - Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar - Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West - Europe","South Central US","Australia East","Australia Central","Australia - Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","West Central US","Central US","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden - Central","UAE North","Australia Central 2","UAE Central","Germany North","Central - India","Korea South","Switzerland North","Switzerland West","Japan West","France - South","South Africa West","West India","Canada East","South India","Germany - West Central","Norway East","Norway West","South Africa North","East Asia","Southeast - Asia","Korea Central","Brazil South","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Austria East","zones":["3","1","2"]},{"location":"Belgium - Central","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Chile Central","zones":["3","1","2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"France Central","zones":["3","1","2"]},{"location":"Germany - West Central","zones":["3","1","2"]},{"location":"Indonesia Central","zones":["3","1","2"]},{"location":"Israel - Central","zones":["3","1","2"]},{"location":"Italy North","zones":["3","1","2"]},{"location":"Japan - East","zones":["3","1","2"]},{"location":"Japan West","zones":["3","1","2"]},{"location":"Korea - Central","zones":["3","1","2"]},{"location":"Malaysia West","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Belgium - Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '217725' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E7DD10FF85174C338B22E2F1E1C5D2DC Ref B: SYD03EDGE1922 Ref C: 2025-12-23T05:01:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 - response: - body: - string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f4ac5a0c-02d6-442f-aeec-e76658673097\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_MSIUHGJKMEZ4I2CHG6RH5TI7EWJECWPCVU7ZPGR2UHYDBMFNEDVERRGLZGJ4YE6/providers/Microsoft.Network/networkInterfaces/VM2VMNIC/ipConfigurations/IPCONFIGVM2"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' - headers: - cache-control: - - no-cache - content-length: - - '990' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:13 GMT - etag: - - W/"f4ac5a0c-02d6-442f-aeec-e76658673097" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 867b920c-36dc-4bc1-bbc8-488f8e6a93de - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiasoutheast/38bf18d4-7e9f-455a-98eb-e1c5f338e4a8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B8D86277536F42299A9EE85D7CFEDEA9 Ref B: SYD03EDGE1916 Ref C: 2025-12-23T05:01:13Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '273' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/28f09c12-ccf4-4219-bf86-8388d0bffe71 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3E318F0A7EC846549EF5892EB6925E0D Ref B: SYD03EDGE1718 Ref C: 2025-12-23T05:01:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": - \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": - \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": - [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1233' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/1cee6816-18cd-41e1-be85-51ebedc903a8 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73980 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E67FFDBF763B4CD69D219E8508A5E5B3 Ref B: SYD03EDGE1018 Ref C: 2025-12-23T05:01:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-11-01 - response: - body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n - \ }\r\n]" - headers: - cache-control: - - no-cache - content-length: - - '273' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/6bf657d1-ac57-4c63-b29f-4607216151d1 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8DE7B9956C27408DA1AE91474B1ED184 Ref B: SYD03EDGE1420 Ref C: 2025-12-23T05:01:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240703.1797?api-version=2024-11-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": - \"2026-06-09T00:00:00+00:00\",\r\n \"alternativeOption\": {\r\n \"type\": - \"Offer\",\r\n \"value\": \"debian-13\"\r\n }\r\n },\r\n \"features\": - [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-10-02T00:00:00+00:00\"\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240703.1797\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240703.1797\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1233' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/cd7f5afb-2323-4655-ad4c-9d560dbf9de8 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73979 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FBD5DCDD95954C89B01EED36CAB9C159 Ref B: SYD03EDGE0909 Ref C: 2025-12-23T05:01:16Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", - "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": - [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm3NSG", "apiVersion": - "2015-06-15", "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": - "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vm3PublicIP", - "location": "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": - "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type": - "Microsoft.Network/networkInterfaces", "name": "vm3VMNic", "location": "westus", - "tags": {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vm3NSG", - "Microsoft.Network/publicIpAddresses/vm3PublicIP"], "properties": {"ipConfigurations": - [{"name": "ipconfigvm3", "properties": {"privateIPAllocationMethod": "Dynamic", - "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"}}}, - {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm3", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm3VMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic", - "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": - "10", "version": "latest"}}, "osProfile": {"computerName": "vm3", "adminUsername": - "admin123", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": - {}}, "parameters": {"adminPassword": {"value": "PasswordPassword1!"}}, "mode": - "incremental"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Length: - - '2532' - Content-Type: - - application/json - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","name":"vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2149135842603612670","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-12-23T05:01:17.3950835Z","duration":"PT0.0006419S","correlationId":"07d39568-3007-45d6-8948-cde956760300","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}]}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE/operationStatuses/08584351408080728759?api-version=2024-11-01&t=639020628779106595&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=VhQ2WrMZK-phxUM7lRqqO4DAPvyuXE47_YFH_z9T7fQkd5qhMeetvjyMRYX0dBzwJNlnuggwOSZChGFQcGs9Z3DgZcKWjR6bedfkOsQTn7lB9L8IreGUkc3UnCccEZQCk1oyK_mmAM-AIk8V6HLwQLEMZ5oDbq9ROyu4sgOWjZot8miDYN6rL9xkN6r-LrdUUm8gluP4K4SEK6TNEt1tAxKPmPUAgt1yIvsv3JErJvKpxmVpYXohJNeDOihMMncoUgNRFAIjXH2eOzTp3k0oResZXDpP9phDExc_i11LSMNVI6zd2ynd9-GTe5Ksv_cvtUfIBqp_-da-5H7E36P01g&h=KMFJTHSttaRADIkqtffyQtbO5ZtaFVYmW31CH2miVCg - cache-control: - - no-cache - content-length: - - '2119' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-deployment-engine-version: - - 1.560.0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 92F19121A49441A1B68FDA5C77BAAA63 Ref B: SYD03EDGE2009 Ref C: 2025-12-23T05:01:16Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351408080728759?api-version=2024-11-01&t=639020628779106595&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=VhQ2WrMZK-phxUM7lRqqO4DAPvyuXE47_YFH_z9T7fQkd5qhMeetvjyMRYX0dBzwJNlnuggwOSZChGFQcGs9Z3DgZcKWjR6bedfkOsQTn7lB9L8IreGUkc3UnCccEZQCk1oyK_mmAM-AIk8V6HLwQLEMZ5oDbq9ROyu4sgOWjZot8miDYN6rL9xkN6r-LrdUUm8gluP4K4SEK6TNEt1tAxKPmPUAgt1yIvsv3JErJvKpxmVpYXohJNeDOihMMncoUgNRFAIjXH2eOzTp3k0oResZXDpP9phDExc_i11LSMNVI6zd2ynd9-GTe5Ksv_cvtUfIBqp_-da-5H7E36P01g&h=KMFJTHSttaRADIkqtffyQtbO5ZtaFVYmW31CH2miVCg - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C68D25DBF78B4D88A2C69D0FF659ADB3 Ref B: SYD03EDGE1416 Ref C: 2025-12-23T05:01:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584351408080728759?api-version=2024-11-01&t=639020628779106595&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=VhQ2WrMZK-phxUM7lRqqO4DAPvyuXE47_YFH_z9T7fQkd5qhMeetvjyMRYX0dBzwJNlnuggwOSZChGFQcGs9Z3DgZcKWjR6bedfkOsQTn7lB9L8IreGUkc3UnCccEZQCk1oyK_mmAM-AIk8V6HLwQLEMZ5oDbq9ROyu4sgOWjZot8miDYN6rL9xkN6r-LrdUUm8gluP4K4SEK6TNEt1tAxKPmPUAgt1yIvsv3JErJvKpxmVpYXohJNeDOihMMncoUgNRFAIjXH2eOzTp3k0oResZXDpP9phDExc_i11LSMNVI6zd2ynd9-GTe5Ksv_cvtUfIBqp_-da-5H7E36P01g&h=KMFJTHSttaRADIkqtffyQtbO5ZtaFVYmW31CH2miVCg - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 43B715C8BFEE40ACBFC39CEF9FEB7A92 Ref B: SYD03EDGE1911 Ref C: 2025-12-23T05:01:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Resources/deployments/vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","name":"vm_deploy_Lh3ZnzS6Ct5YP46Wmc4oU0X6YY6VqmgE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2149135842603612670","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-12-23T05:01:48.0762247Z","duration":"PT30.6811412S","correlationId":"07d39568-3007-45d6-8948-cde956760300","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '2764' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 583B44FA56C14132950ED89B6AE266B2 Ref B: SYD03EDGE1119 Ref C: 2025-12-23T05:01:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?$expand=instanceView&api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n - \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vm3\",\r\n \"osName\": - \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2025-12-23T05:01:46+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-12-23T05:01:32.145991+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2025-12-23T05:01:45.0524204+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n - \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3229' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E7F60808F9144E88B776FFC9C67352D6 Ref B: SYD03EDGE0808 Ref C: 2025-12-23T05:01:50Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic?api-version=2022-01-01 - response: - body: - string: '{"name":"vm3VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","etag":"W/\"3d5320f3-a500-4ec2-99d5-39c31f1269ea\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6498c98e-8e33-4f45-b286-8ccc44864251","ipConfigurations":[{"name":"ipconfigvm3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3","etag":"W/\"3d5320f3-a500-4ec2-99d5-39c31f1269ea\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ckjwczbs4vrupor32xhgghlduh.dx.internal.cloudapp.net"},"macAddress":"00-22-48-0B-86-29","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' - headers: - cache-control: - - no-cache - content-length: - - '1958' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:51 GMT - etag: - - W/"3d5320f3-a500-4ec2-99d5-39c31f1269ea" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ab307fcb-ca80-4e3b-936f-ebab54ceebcb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 31CA1384A3C7402CAE05AF5D5A37AE8C Ref B: SYD03EDGE1011 Ref C: 2025-12-23T05:01:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --admin-password --subnet --vnet-name --nsg-rule - --size - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP?api-version=2022-01-01 - response: - body: - string: '{"name":"vm3PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","etag":"W/\"5656683d-e617-418b-adde-276c26aeb438\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5b8404cb-76d3-4e7c-aab4-61efde347c3e","ipAddress":"172.185.39.188","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' - headers: - cache-control: - - no-cache - content-length: - - '782' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:51 GMT - etag: - - W/"5656683d-e617-418b-adde-276c26aeb438" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b31e9b4a-222c-4e1b-b043-f588efd31343 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 553C444C71004092ADD08AC102FD2BE9 Ref B: SYD03EDGE2119 Ref C: 2025-12-23T05:01:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27reader%27&api-version=2022-05-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Reader","type":"BuiltInRole","description":"View - all resources, but does not allow you to make any changes.","assignableScopes":["/"],"permissions":[{"actions":["*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:47.8628684Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","type":"Microsoft.Authorization/roleDefinitions","name":"acdd72a7-3385-48ef-bd42-f606fba81ae7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '627' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiasoutheast/bcdb94cf-6ab0-4a74-8618-acf9e6cc53cb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5BFC0E7A146440318B43384BC1E2A4E5 Ref B: SYD03EDGE2111 Ref C: 2025-12-23T05:01:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n - \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"2\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1941' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:52 GMT - etag: - - '"2"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A7D58273D5B6455BB6130838A54A3DE1 Ref B: SYD03EDGE2114 Ref C: 2025-12-23T05:01:53Z' - status: - code: 200 - message: '' -- request: - body: '{"identity": {"type": "SystemAssigned"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - Content-Length: - - '40' - Content-Type: - - application/json - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": - \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e877c064-cb0f-466e-aa80-75f091ccc4c0?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629144808496&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=xFS1Nee1oGEIy-v-ekSnZZRkeP5wGigORtAsyjlYoM9ioSdiLPN1CZN_A5VZAkK04DuBV9zx-pdPuo8IjdMMp3F84Q16pJ61eIaQUEdo0SU2JWbKF-9R762A1kuhZokjTc5QnHMme3hxB8E-lBa38MkkMuY5d7LEHS2eKTuflH81s1ykz7llfF6QsI4FuIS5GELKSgNABRu_j6S7Y_AfsnWslg7HtSaNrw51nnQCfM-E370NystJ65_23ztHlrTcEE8OhtH6c5U6dz_9vBzDMm0DAgbfx0h4hxTbEnRkpkwKDlkk489_mqR0RHQLkctosBcSqpc__XV8iYl-DFecIg&h=paIV62HNqGlzk5LUcPNeeBxuvjX9LfoMe-TYZD8Mxmc - cache-control: - - no-cache - content-length: - - '2110' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:53 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/3f1310c1-bd11-49f2-835a-e66175b29a9c - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 10D9FA8321D247EDA7DCD6D10AE9FDF0 Ref B: SYD03EDGE1922 Ref C: 2025-12-23T05:01:53Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e877c064-cb0f-466e-aa80-75f091ccc4c0?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629144808496&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=xFS1Nee1oGEIy-v-ekSnZZRkeP5wGigORtAsyjlYoM9ioSdiLPN1CZN_A5VZAkK04DuBV9zx-pdPuo8IjdMMp3F84Q16pJ61eIaQUEdo0SU2JWbKF-9R762A1kuhZokjTc5QnHMme3hxB8E-lBa38MkkMuY5d7LEHS2eKTuflH81s1ykz7llfF6QsI4FuIS5GELKSgNABRu_j6S7Y_AfsnWslg7HtSaNrw51nnQCfM-E370NystJ65_23ztHlrTcEE8OhtH6c5U6dz_9vBzDMm0DAgbfx0h4hxTbEnRkpkwKDlkk489_mqR0RHQLkctosBcSqpc__XV8iYl-DFecIg&h=paIV62HNqGlzk5LUcPNeeBxuvjX9LfoMe-TYZD8Mxmc - response: - body: - string: "{\r\n \"startTime\": \"2025-12-23T05:01:54.4119276+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e877c064-cb0f-466e-aa80-75f091ccc4c0\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:01:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/ee48e2e8-7e20-4c78-96d0-e6cbe9d2de39 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 81FF2AF9D013481BBF2028B32BD02996 Ref B: SYD03EDGE0819 Ref C: 2025-12-23T05:01:54Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e877c064-cb0f-466e-aa80-75f091ccc4c0?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629144808496&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=xFS1Nee1oGEIy-v-ekSnZZRkeP5wGigORtAsyjlYoM9ioSdiLPN1CZN_A5VZAkK04DuBV9zx-pdPuo8IjdMMp3F84Q16pJ61eIaQUEdo0SU2JWbKF-9R762A1kuhZokjTc5QnHMme3hxB8E-lBa38MkkMuY5d7LEHS2eKTuflH81s1ykz7llfF6QsI4FuIS5GELKSgNABRu_j6S7Y_AfsnWslg7HtSaNrw51nnQCfM-E370NystJ65_23ztHlrTcEE8OhtH6c5U6dz_9vBzDMm0DAgbfx0h4hxTbEnRkpkwKDlkk489_mqR0RHQLkctosBcSqpc__XV8iYl-DFecIg&h=paIV62HNqGlzk5LUcPNeeBxuvjX9LfoMe-TYZD8Mxmc - response: - body: - string: "{\r\n \"startTime\": \"2025-12-23T05:01:54.4119276+00:00\",\r\n \"endTime\": - \"2025-12-23T05:01:59.3807463+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e877c064-cb0f-466e-aa80-75f091ccc4c0\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:02:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/ab6a40e0-919a-4f39-a425-4275f8f289bc - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4D60D5A6A79D4A989D1797A1AC71FF21 Ref B: SYD03EDGE0714 Ref C: 2025-12-23T05:02:25Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": - \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2111' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:02:26 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;28 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AF535424814A4E03A14F4ABF4C3661E3 Ref B: SYD03EDGE1320 Ref C: 2025-12-23T05:02:25Z' - status: - code: 200 - message: '' -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "adaffc47-9ae2-4228-8d2b-57c76ed093f4"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/c1543594-227d-46eb-9d08-8186771b5a47?api-version=2022-04-01 - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"adaffc47-9ae2-4228-8d2b-57c76ed093f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1","condition":null,"conditionVersion":null,"createdOn":"2025-12-23T05:02:27.1373637Z","updatedOn":"2025-12-23T05:02:28.3364067Z","createdBy":null,"updatedBy":"326f7b68-6ce9-4387-a87e-632b4c8bd41a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Authorization/roleAssignments/c1543594-227d-46eb-9d08-8186771b5a47","type":"Microsoft.Authorization/roleAssignments","name":"c1543594-227d-46eb-9d08-8186771b5a47"}' - headers: - cache-control: - - no-cache - content-length: - - '993' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:02:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/australiaeast/9be42fa3-9bcd-41e7-8219-ea5f8e6b234e - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: E6BACBEEBFA64680B0E16AD3F2AD3F6C Ref B: SYD03EDGE1017 Ref C: 2025-12-23T05:02:26Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity assign - Connection: - - keep-alive - ParameterSetName: - - -g -n --scope --role - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": - \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2111' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:02:32 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;27 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1B4BE3075CDB41C19C3FCC6BCBDB3CF5 Ref B: SYD03EDGE1416 Ref C: 2025-12-23T05:02:32Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n - \ \"principalId\": \"adaffc47-9ae2-4228-8d2b-57c76ed093f4\",\r\n \"tenantId\": - \"4b71fe15-44c6-47b7-94ac-5a6b2cc290e9\"\r\n },\r\n \"properties\": {\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B2ms\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"3\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2111' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:02:33 GMT - etag: - - '"3"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;26 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 984C38AE20F64639B132B66B804D5D1F Ref B: SYD03EDGE0721 Ref C: 2025-12-23T05:02:33Z' - status: - code: 200 - message: '' -- request: - body: '{"identity": {"userAssignedIdentities": null, "type": "None"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - Content-Length: - - '62' - Content-Type: - - application/json - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n - \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"4\\\"\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da783127-cdce-40b1-92dc-dac780389289?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629553065574&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=LqhC0PNgxodnCcTd_KJiwkbiqy5eETkRvDZvz5Axphrnx144KBJioh1SLNCIb-StBWLVOCP2_yLE8CU_B5K9E2kuxUZWzepxVpy-NIaZqYz3FwAI-l7-Rxf7x7OViJryx4SluWMdXyRVgJkEpakoxxmdIJiHTKTTdvWqYqEzjryS_2DaO5arwRVa_G8KFAnU4ydY_996eqbGT8x8pzNnv19kEzDk3rcJUm4j-aYpj2GUY_2vcd5d8wSL44KET0T0yxDM0RyQgDvXVw720x49-stLYdsg_DkqjUPVOynvg1Oe000Ifza0Y-ueT3hOYoHL0nT3XBjO4OERgnNrf1D1jg&h=ZuAnkj0Op3xvnh8HyumdgTA8C5oNi0k19usKFV4_H9M - cache-control: - - no-cache - content-length: - - '1940' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:02:35 GMT - etag: - - '"4"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/e9ec3493-80ad-41df-8a8c-86cad857e145 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;10 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: ED9D91C3EF4F4A9F90E7888299711A70 Ref B: SYD03EDGE1912 Ref C: 2025-12-23T05:02:33Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da783127-cdce-40b1-92dc-dac780389289?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629553065574&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=LqhC0PNgxodnCcTd_KJiwkbiqy5eETkRvDZvz5Axphrnx144KBJioh1SLNCIb-StBWLVOCP2_yLE8CU_B5K9E2kuxUZWzepxVpy-NIaZqYz3FwAI-l7-Rxf7x7OViJryx4SluWMdXyRVgJkEpakoxxmdIJiHTKTTdvWqYqEzjryS_2DaO5arwRVa_G8KFAnU4ydY_996eqbGT8x8pzNnv19kEzDk3rcJUm4j-aYpj2GUY_2vcd5d8wSL44KET0T0yxDM0RyQgDvXVw720x49-stLYdsg_DkqjUPVOynvg1Oe000Ifza0Y-ueT3hOYoHL0nT3XBjO4OERgnNrf1D1jg&h=ZuAnkj0Op3xvnh8HyumdgTA8C5oNi0k19usKFV4_H9M - response: - body: - string: "{\r\n \"startTime\": \"2025-12-23T05:02:35.2562429+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"da783127-cdce-40b1-92dc-dac780389289\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:02:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/fb140d08-b95d-4410-8c9b-e808aa345639 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5A39B486BAB64A4CA533C875A7944484 Ref B: SYD03EDGE0918 Ref C: 2025-12-23T05:02:36Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/da783127-cdce-40b1-92dc-dac780389289?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639020629553065574&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=LqhC0PNgxodnCcTd_KJiwkbiqy5eETkRvDZvz5Axphrnx144KBJioh1SLNCIb-StBWLVOCP2_yLE8CU_B5K9E2kuxUZWzepxVpy-NIaZqYz3FwAI-l7-Rxf7x7OViJryx4SluWMdXyRVgJkEpakoxxmdIJiHTKTTdvWqYqEzjryS_2DaO5arwRVa_G8KFAnU4ydY_996eqbGT8x8pzNnv19kEzDk3rcJUm4j-aYpj2GUY_2vcd5d8wSL44KET0T0yxDM0RyQgDvXVw720x49-stLYdsg_DkqjUPVOynvg1Oe000Ifza0Y-ueT3hOYoHL0nT3XBjO4OERgnNrf1D1jg&h=ZuAnkj0Op3xvnh8HyumdgTA8C5oNi0k19usKFV4_H9M - response: - body: - string: "{\r\n \"startTime\": \"2025-12-23T05:02:35.2562429+00:00\",\r\n \"endTime\": - \"2025-12-23T05:02:39.8188561+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"da783127-cdce-40b1-92dc-dac780389289\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:03:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=326f7b68-6ce9-4387-a87e-632b4c8bd41a/westus/f7450a87-e41a-404e-bab0-3e818ac2e27d - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 04AD88D9D86E442384C00A1303819B0F Ref B: SYD03EDGE2112 Ref C: 2025-12-23T05:03:06Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity remove - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2024-11-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n - \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"4\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1941' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:03:07 GMT - etag: - - '"4"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5FADC42924104289A9F0D03C6AE46012 Ref B: SYD03EDGE1921 Ref C: 2025-12-23T05:03:07Z' - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm identity show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.11 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2025-04-01 - response: - body: - string: "{\r\n \"name\": \"vm3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/virtualMachines/vm3\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": - \"Standard_B2ms\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"d0ce729f-dbb1-453f-ad19-4fdc0df8676d\",\r\n \"storageProfile\": - {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\",\r\n \"exactVersion\": \"0.20240703.1797\"\r\n },\r\n - \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm3_disk1_a2aba12c10334b28adc314ec09cdac13\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Compute/disks/vm3_disk1_a2aba12c10334b28adc314ec09cdac13\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"admin123\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_msi000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"}]},\r\n - \ \"timeCreated\": \"2025-12-23T05:01:30.2397035+00:00\"\r\n },\r\n \"etag\": - \"\\\"4\\\"\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1941' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 Dec 2025 05:03:08 GMT - etag: - - '"4"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-need-to-refresh-epl-cache: - - 'False' - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990,Microsoft.Compute/LowCostGetResource;33 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1FA9E9D94CF34E199B88881EF9B77AC6 Ref B: SYD03EDGE0813 Ref C: 2025-12-23T05:03:08Z' - status: - code: 200 - message: '' + code: 400 + message: Bad Request version: 1 From 18ad30369161570a293a9f685b54906c13553398 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 30 Dec 2025 14:02:55 +0800 Subject: [PATCH 27/32] Removed unused parameter in commands.py --- src/azure-cli/azure/cli/command_modules/vm/commands.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/commands.py b/src/azure-cli/azure/cli/command_modules/vm/commands.py index 00b5f2900d1..9d0c48f4490 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/commands.py @@ -288,11 +288,12 @@ def load_command_table(self, _): from .operations.snapshot import SnapshotUpdate self.command_table['snapshot update'] = SnapshotUpdate(loader=self) - with self.command_group('vm', compute_vm_sdk) as g: - g.custom_command('identity assign', 'assign_vm_identity', validator=process_assign_identity_namespace) - g.custom_command('identity remove', 'remove_vm_identity', validator=process_remove_identity_namespace, min_api='2017-12-01') - g.custom_show_command('identity show', 'show_vm_identity') + with self.command_group('vm identity') as g: + g.custom_command('assign', 'assign_vm_identity', validator=process_assign_identity_namespace) + g.custom_command('remove', 'remove_vm_identity', validator=process_remove_identity_namespace, min_api='2017-12-01') + g.custom_show_command('show', 'show_vm_identity') + with self.command_group('vm', compute_vm_sdk) as g: g.custom_command('application set', 'set_vm_applications', validator=process_set_applications_namespace, min_api='2021-07-01') g.custom_command('application list', 'list_vm_applications', min_api='2021-07-01') From 4e72703920cb1d27969639cc53d4072a824b5ff9 Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 31 Dec 2025 08:39:23 +0800 Subject: [PATCH 28/32] Refractor assign_vm_identity in custom.py --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 3e9f7d6bff8..2819e7bce21 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -853,11 +853,11 @@ def getter(): return get_vm_by_aaz(cmd, resource_group_name, vm_name) def setter(vm, external_identities=external_identities): - if vm.get('identity') and vm.get('identity').get('type') == system_assigned_user_assigned: + if vm.get('identity', {}).get('type', None) == system_assigned_user_assigned: identity_types = system_assigned_user_assigned - elif vm.get('identity') and vm.get('identity').get('type') == system_assigned and external_identities: + elif vm.get('identity', {}).get('type', None) == system_assigned and external_identities: identity_types = system_assigned_user_assigned - elif vm.get('identity') and vm.get('identity').get('type') == user_assigned and enable_local_identity: + elif vm.get('identity', {}).get('type', None) == user_assigned and enable_local_identity: identity_types = system_assigned_user_assigned elif external_identities and enable_local_identity: identity_types = system_assigned_user_assigned @@ -875,7 +875,7 @@ def setter(vm, external_identities=external_identities): command_args['mi_system_assigned'] = "True" command_args['mi_user_assigned'] = [] - if vm.get('identity') and vm.get('identity').get('userAssignedIdentities'): + if vm.get('identity', {}).get('userAssignedIdentities', None): for key in vm.get('identity').get('userAssignedIdentities').keys(): command_args['mi_user_assigned'].append(key) From fc6ad3f9e7821f16cb4551ce280c85f0904b3aaf Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 31 Dec 2025 10:09:37 +0800 Subject: [PATCH 29/32] Refractor code --- .../azure/cli/command_modules/vm/custom.py | 31 +++++++++---------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 2819e7bce21..d227845f587 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -37,7 +37,7 @@ from azure.cli.core.profiles import ResourceType from azure.cli.core.util import sdk_no_wait -from ._vm_utils import read_content_if_is_file, import_aaz_by_profile +from ._vm_utils import read_content_if_is_file, import_aaz_by_profile, IdentityType from ._vm_diagnostics_templates import get_default_diag_config from ._actions import (load_images_from_aliases_doc, load_extension_images_thru_services, @@ -844,32 +844,29 @@ def assign_vm_identity(cmd, resource_group_name, vm_name, assign_identity=None, identity_role_id=None, identity_scope=None): identity, _, external_identities, enable_local_identity = _build_identities_info(assign_identity) - system_assigned = "SystemAssigned" - user_assigned = "UserAssigned" - system_assigned_user_assigned = "SystemAssigned, UserAssigned" command_args = {'resource_group': resource_group_name, 'vm_name': vm_name} def getter(): return get_vm_by_aaz(cmd, resource_group_name, vm_name) def setter(vm, external_identities=external_identities): - if vm.get('identity', {}).get('type', None) == system_assigned_user_assigned: - identity_types = system_assigned_user_assigned - elif vm.get('identity', {}).get('type', None) == system_assigned and external_identities: - identity_types = system_assigned_user_assigned - elif vm.get('identity', {}).get('type', None) == user_assigned and enable_local_identity: - identity_types = system_assigned_user_assigned + if vm.get('identity', {}).get('type', None) == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED: + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED + elif vm.get('identity', {}).get('type', None) == IdentityType.SYSTEM_ASSIGNED and external_identities: + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED + elif vm.get('identity', {}).get('type', None) == IdentityType.USER_ASSIGNED and enable_local_identity: + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED elif external_identities and enable_local_identity: - identity_types = system_assigned_user_assigned + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED elif external_identities: - identity_types = user_assigned + identity_types = IdentityType.USER_ASSIGNED else: - identity_types = system_assigned + identity_types = IdentityType.SYSTEM_ASSIGNED - if identity_types == system_assigned_user_assigned: + if identity_types == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED: command_args['mi_system_assigned'] = "True" command_args['mi_user_assigned'] = [] - elif identity_types == user_assigned: + elif identity_types == IdentityType.USER_ASSIGNED: command_args['mi_user_assigned'] = [] else: command_args['mi_system_assigned'] = "True" @@ -2608,11 +2605,11 @@ def setter(resource_group_name, vm_name, vm): from ._vm_utils import IdentityType if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: - command_args['mi_user_assigned'] = \ - list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys()) + ['UserAssigned'] # NOTE: The literal 'UserAssigned' is intentionally appended as a marker for # VMIdentityRemove._format_content, which uses it to apply special handling # for purely user-assigned identities. It is not a real identity resource ID. + command_args['mi_user_assigned'] = \ + list(vm.get('identity', {}).get('userAssignedIdentities', {}).keys()) + ['UserAssigned'] elif vm.get('identity') and vm.get('identity').get('type') == IdentityType.SYSTEM_ASSIGNED.value: command_args['mi_user_assigned'] = [] command_args['mi_system_assigned'] = 'True' From 7b70937978bd8a6279a2d474a56641ac6d8764db Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 31 Dec 2025 12:04:12 +0800 Subject: [PATCH 30/32] Fix refractored code bug --- .../azure/cli/command_modules/vm/custom.py | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index d227845f587..1c43cabc9aa 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -850,23 +850,23 @@ def getter(): return get_vm_by_aaz(cmd, resource_group_name, vm_name) def setter(vm, external_identities=external_identities): - if vm.get('identity', {}).get('type', None) == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED: - identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED - elif vm.get('identity', {}).get('type', None) == IdentityType.SYSTEM_ASSIGNED and external_identities: - identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED - elif vm.get('identity', {}).get('type', None) == IdentityType.USER_ASSIGNED and enable_local_identity: - identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED + if vm.get('identity', {}).get('type', None) == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value + elif vm.get('identity', {}).get('type', None) == IdentityType.SYSTEM_ASSIGNED.value and external_identities: + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value + elif vm.get('identity', {}).get('type', None) == IdentityType.USER_ASSIGNED.value and enable_local_identity: + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value elif external_identities and enable_local_identity: - identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED + identity_types = IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value elif external_identities: - identity_types = IdentityType.USER_ASSIGNED + identity_types = IdentityType.USER_ASSIGNED.value else: - identity_types = IdentityType.SYSTEM_ASSIGNED + identity_types = IdentityType.SYSTEM_ASSIGNED.value - if identity_types == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED: + if identity_types == IdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED.value: command_args['mi_system_assigned'] = "True" command_args['mi_user_assigned'] = [] - elif identity_types == IdentityType.USER_ASSIGNED: + elif identity_types == IdentityType.USER_ASSIGNED.value: command_args['mi_user_assigned'] = [] else: command_args['mi_system_assigned'] = "True" From 1339e76a5006ca375d0c09c95f352d25f84e9326 Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 31 Dec 2025 12:13:30 +0800 Subject: [PATCH 31/32] Removed redundant lines --- src/azure-cli/azure/cli/command_modules/vm/operations/vm.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py index d8c31cca956..91cf9520727 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py +++ b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py @@ -202,12 +202,6 @@ def _output(self, *args, **kwargs): if not identity: return result - if not identity.get('principalId'): - identity['principalId'] = None - - if not identity.get('tenantId'): - identity['tenantId'] = None - if not identity.get('userAssignedIdentities'): identity['userAssignedIdentities'] = None From d1ca5270055c3cfb685458bf7471a9e71769136e Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 31 Dec 2025 13:59:06 +0800 Subject: [PATCH 32/32] Removed redundant import --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 1c43cabc9aa..c5b8e1dd218 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2550,7 +2550,7 @@ def _remove_identities(cmd, resource_group_name, name, identities, getter, sette def _remove_identities_by_aaz(cmd, resource_group_name, name, identities, getter, setter): - from ._vm_utils import MSI_LOCAL_ID, IdentityType + from ._vm_utils import MSI_LOCAL_ID remove_system_assigned_identity = False @@ -2603,7 +2603,6 @@ def setter(resource_group_name, vm_name, vm): 'vm_name': vm_name } - from ._vm_utils import IdentityType if vm.get('identity') and vm.get('identity').get('type') == IdentityType.USER_ASSIGNED.value: # NOTE: The literal 'UserAssigned' is intentionally appended as a marker for # VMIdentityRemove._format_content, which uses it to apply special handling